MapArcLayer constructor

const MapArcLayer({
  1. Key? key,
  2. required Set<MapArc> arcs,
  3. Animation<double>? animation,
  4. Color? color,
  5. double width = 2,
  6. List<double> dashArray = const <double>[0, 0],
  7. IndexedWidgetBuilder? tooltipBuilder,
})

Creates the MapArcLayer.

Implementation

const MapArcLayer({
  Key? key,
  required this.arcs,
  this.animation,
  this.color,
  this.width = 2,
  this.dashArray = const <double>[0, 0],
  IndexedWidgetBuilder? tooltipBuilder,
}) : super(key: key, tooltipBuilder: tooltipBuilder);