nullableListFromJson static method
Implementation
static List<Aoi>? nullableListFromJson(dynamic value) {
List<Aoi> result = [];
if (value is List) {
for (var item in value) {
if (item is Map<String, dynamic>) {
result.add(Aoi.fromJson(item));
}
}
return result;
}
return null;
}