nullableFromJson static method
Implementation
static ReGeocode? nullableFromJson(dynamic value) {
if (value is Map<String, dynamic>) {
return ReGeocode.fromJson(value);
}
return null;
}
static ReGeocode? nullableFromJson(dynamic value) {
if (value is Map<String, dynamic>) {
return ReGeocode.fromJson(value);
}
return null;
}