tryGetFromJson<A> method
A?
tryGetFromJson<A>(])
Implementation
A? tryGetFromJson<A>(String key, A Function(Map<String, Object?>) fromJson,
[TryGet log = TryGet.optional]) {
final value = tryGetMap<String, Object?>(key, log);
return value != null ? fromJson(value) : null;
}