Boundary constructor

const Boundary({
  1. required LatLng topLeft,
  2. required LatLng bottomRight,
})

Implementation

const Boundary({
  required this.topLeft,
  required this.bottomRight,
});