PolygonOptions constructor

const PolygonOptions({
  1. Color color = const Color(0xFF00FF00),
  2. double borderStrokeWidth = 0.0,
  3. Color borderColor = const Color(0xFFFFFF00),
  4. bool isDotted = false,
  5. bool isFilled = false,
})

Implementation

const PolygonOptions({
  this.color = const Color(0xFF00FF00),
  this.borderStrokeWidth = 0.0,
  this.borderColor = const Color(0xFFFFFF00),
  this.isDotted = false,
  this.isFilled = false,
});