BoundingBox constructor

BoundingBox({
  1. required double height,
  2. required double width,
  3. required LatLng topRight,
  4. required LatLng lowerLeft,
})

Implementation

BoundingBox({
  required this.height,
  required this.width,
  required this.topRight,
  required this.lowerLeft,
});