fromList static method
Implementation
@visibleForTesting
static OptLatLngBounds? fromList(dynamic json) {
if (json == null) {
return null;
}
return OptLatLngBounds(
southwest: OptLatLng._fromJson(json[0]),
northeast: OptLatLng._fromJson(json[1]),
);
}