BMFArcLine constructor
- {required List<
BMFCoordinate> coordinates, - int? width = 5,
- Color? color = Colors.blue,
- BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
- bool? clickable = false,
- int zIndex = 0,
- bool visible = true,
- Map? customMap}
BMFArcline构造方法
Implementation
BMFArcLine({
required this.coordinates,
this.width = 5,
this.color = Colors.blue,
this.lineDashType = BMFLineDashType.LineDashTypeNone,
this.clickable = false,
int zIndex = 0,
bool visible = true,
Map? customMap,
}) : assert(coordinates.length > 2),
super(zIndex: zIndex, visible: visible, customMap: customMap);