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