Files
immich/mobile/lib/extensions/json_extensions.dart
T
2026-05-03 17:11:22 +07:00

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 {};
}