fromJsonStringGeneric<T> static method
Implementation
static T? fromJsonStringGeneric<T>(
String? json, T? Function(Map<String, dynamic>? json) fromJsonMap) =>
(json?.isNotEmpty ?? true) ? fromJsonMap.call(jsonDecode(json!)) : null;