LatLngQuad constructor

const LatLngQuad({
  1. required LatLng topLeft,
  2. required LatLng topRight,
  3. required LatLng bottomRight,
  4. required LatLng bottomLeft,
})

Implementation

const LatLngQuad({
  required this.topLeft,
  required this.topRight,
  required this.bottomRight,
  required this.bottomLeft,
});