get obj.
static T getObj<T>(String key, T Function(Map v) f, {required T defValue}) { Map? map = getObject(key); return map.isEmpty ? defValue : f(map); }