SymbolIcon constructor

const SymbolIcon({
  1. required List<NPoint> path,
  2. SymbolStyle? style,
  3. int? radius,
  4. String? fillColor,
  5. int? fillOpacity,
  6. String? strokeColor,
  7. NStrokeStyle? strokeStyle,
  8. int? strokeWeight,
  9. int? strokeOpacity,
  10. NPoint? anchor,
})

Implementation

const SymbolIcon({
  required this.path,
  this.style,
  this.radius,
  this.fillColor,
  this.fillOpacity,
  this.strokeColor,
  this.strokeStyle,
  this.strokeWeight,
  this.strokeOpacity,
  this.anchor,
});