mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
5 lines
254 B
Dart
5 lines
254 B
Dart
extension JsonHelper on Map<String, Object?> {
|
|
/// Returns the nested map under [key] or an empty const map if the key is absent or the value is not a map
|
|
Map<String, Object?> nested(String key) => (this[key] as Map<String, Object?>?) ?? const {};
|
|
}
|