BMFCircle constructor Null safety
- {required dynamic center,
- required double radius,
- int? width = 5,
- dynamic strokeColor = Colors.blue,
- dynamic fillColor = Colors.red,
- dynamic lineDashType = BMFLineDashType.LineDashTypeNone,
- bool? dottedLine,
- List? hollowShapes,
- int zIndex = 0,
- bool visible = true}
BMFCircle构造方法
Implementation
BMFCircle({
required this.center,
required this.radius,
this.width: 5,
this.strokeColor: Colors.blue,
this.fillColor: Colors.red,
this.lineDashType: BMFLineDashType.LineDashTypeNone,
this.dottedLine,
this.hollowShapes,
int zIndex: 0,
bool visible: true,
}) : super(zIndex: zIndex, visible: visible);