PolygonEsri constructor

PolygonEsri({
  1. required List<LatLng> points,
  2. Color color = const Color(0xFF00FF00),
  3. double borderStrokeWidth = 0.0,
  4. Color borderColor = const Color(0xFFFFFF00),
  5. bool isDotted = false,
  6. bool isFilled = false,
  7. dynamic attributes,
})

Implementation

PolygonEsri({
  required this.points,
  this.color = const Color(0xFF00FF00),
  this.borderStrokeWidth = 0.0,
  this.borderColor = const Color(0xFFFFFF00),
  this.isDotted = false,
  this.isFilled = false,
  this.attributes,
}) : super(points: points) {
  boundingBox = LatLngBounds.fromPoints(points);
}