BMFArcLine constructor

BMFArcLine(
  1. {required List<BMFCoordinate> coordinates,
  2. int? width = 5,
  3. Color? color = Colors.blue,
  4. BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
  5. bool? clickable = false,
  6. int zIndex = 0,
  7. bool visible = true,
  8. 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);