BMFArcline constructor

BMFArcline(
  1. {@required List<BMFCoordinate> coordinates,
  2. int width: 5,
  3. Color strokeColor: Colors.blue,
  4. BMFLineDashType lineDashType: BMFLineDashType.LineDashTypeNone,
  5. int zIndex: 0,
  6. bool visible: true}
)

BMFArcline构造方法

Implementation

BMFArcline(
    {@required this.coordinates,
    this.width: 5,
    this.strokeColor: Colors.blue,
    this.lineDashType: BMFLineDashType.LineDashTypeNone,
    int zIndex: 0,
    bool visible: true})
    : super(zIndex: zIndex, visible: visible);