CoordinateBounds constructor

CoordinateBounds({
  1. required Point southwest,
  2. required Point northeast,
  3. required bool infiniteBounds,
})

Implementation

CoordinateBounds({
  required this.southwest,
  required this.northeast,
  required this.infiniteBounds,
});