PolylineRF constructor

PolylineRF({
  1. required List<CoordinateRF> Points,
  2. required Color color,
  3. required double BorderStrokeWidth,
  4. required Color BorderColor,
  5. required double StrokeWidth,
  6. bool isSolidPattern = true,
})

Implementation

PolylineRF(
    {required this.Points,
    required this.color,
    required this.BorderStrokeWidth,
    required this.BorderColor,
    required this.StrokeWidth,
    this.isSolidPattern = true});