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