LocationBounds constructor

LocationBounds({
  1. required double northeast_lat,
  2. required double northeast_lng,
  3. required double southwest_lat,
  4. required double southwest_lng,
})

Implementation

LocationBounds({
  required this.northeast_lat,
  required this.northeast_lng,
  required this.southwest_lat,
  required this.southwest_lng,
});