nullableJsonList<T> static method
Implementation
static List<T>? nullableJsonList<T>(
dynamic json,
T Function(dynamic) fromJson,
) => json != null ? (json as List).map((e) => fromJson(e)).toList() : null;
static List<T>? nullableJsonList<T>(
dynamic json,
T Function(dynamic) fromJson,
) => json != null ? (json as List).map((e) => fromJson(e)).toList() : null;