BoundingPolygonBox constructor

BoundingPolygonBox({
  1. required num p1Lat,
  2. required num p1Lng,
  3. required num p2Lat,
  4. required num p2Lng,
  5. required num p3Lat,
  6. required num p3Lng,
})

Implementation

BoundingPolygonBox({
  required this.p1Lat,
  required this.p1Lng,
  required this.p2Lat,
  required this.p2Lng,
  required this.p3Lat,
  required this.p3Lng,
});