fromList static method

LatLngBounds fromList(
  1. dynamic json
)

Implementation

static LatLngBounds fromList(dynamic json) {
  return LatLngBounds(
    southwest: LatLng.fromJson(json[0]),
    northeast: LatLng.fromJson(json[1]),
  );
}