refactor to per row store

This commit is contained in:
shenlong-tanwen
2026-04-29 00:43:52 +07:00
parent cc56f86333
commit 5933664862
22 changed files with 338 additions and 266 deletions
@@ -1,4 +0,0 @@
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 {};
}