LatLngQuad constructor

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

Implementation

LatLngQuad(
    {required this.topLeft,
    required this.topRight,
    required this.bottomRight,
    required this.bottomLeft})
    : assert(topLeft != null),
      assert(topRight != null),
      assert(bottomRight != null),
      assert(bottomLeft != null);