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