refactor: app metadata

This commit is contained in:
shenlong-tanwen
2026-04-24 19:23:21 +05:30
parent 8cff5883b5
commit cc56f86333
33 changed files with 14221 additions and 85 deletions
@@ -0,0 +1,4 @@
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 {};
}