LocationBounds constructor

const LocationBounds({
  1. required Coords southwest,
  2. required Coords northeast,
})

Creates a bounding box.

Implementation

const LocationBounds({
  required this.southwest,
  required this.northeast,
});