listFromJson static method
Implementation
static List<GeofenceSettingsResponse> listFromJson(
dynamic json, {
bool growable = false,
}) {
final result = <GeofenceSettingsResponse>[];
if (json is List && json.isNotEmpty) {
for (final row in json) {
final value = GeofenceSettingsResponse.fromJson(row);
if (value != null) {
result.add(value);
}
}
}
return result.toList(growable: growable);
}