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