TaggedPolyline constructor

TaggedPolyline({
  1. required List<LatLng> points,
  2. double strokeWidth = 1.0,
  3. Color color = const Color(0xFF00FF00),
  4. double borderStrokeWidth = 0.0,
  5. Color? borderColor = const Color(0xFFFFFF00),
  6. List<Color>? gradientColors,
  7. List<double>? colorsStop,
  8. bool isDotted = false,
  9. String? tag,
})

Implementation

TaggedPolyline({
  required super.points,
  super.strokeWidth = 1.0,
  super.color = const Color(0xFF00FF00),
  super.borderStrokeWidth = 0.0,
  super.borderColor = const Color(0xFFFFFF00),
  super.gradientColors,
  super.colorsStop,
  super.isDotted = false,
  this.tag,
});