RouteData constructor

const RouteData({
  1. required List<LatLong> points,
  2. Color color = Colors.blue,
  3. double strokeWidth = 4.0,
  4. bool isDotted = false,
  5. String? label,
})

Implementation

const RouteData({
  required this.points,
  this.color = Colors.blue,
  this.strokeWidth = 4.0,
  this.isDotted = false,
  this.label,
});