fromList static method
Implementation
@visibleForTesting
static LatLngBounds? fromList(dynamic json) {
if (json == null) {
return null;
}
return LatLngBounds(
southwest: LatLng.fromJson(json[0])!,
northeast: LatLng.fromJson(json[1])!,
);
}