LatLngBounds constructor

const LatLngBounds({
  1. required LatLng southwest,
  2. required LatLng northeast,
})

constructs a LatLngBounds object.

Implementation

const factory LatLngBounds({
  /// The southwest coordinate of the bounds.
  required LatLng southwest,

  /// The northeast coordinate of the bounds.
  required LatLng northeast,
}) = _LatLngBounds;