GeoRect constructor

const GeoRect({
  1. required GeoPoint southWestPoint,
  2. required GeoPoint northEastPoint,
})

Implementation

const GeoRect({
  required this.southWestPoint,
  required this.northEastPoint
});