BMFCircle constructor

BMFCircle(
  1. {required BMFCoordinate center,
  2. required double radius,
  3. int? width = 5,
  4. Color? strokeColor = Colors.blue,
  5. Color? fillColor = Colors.red,
  6. BMFLineDashType? lineDashType = BMFLineDashType.LineDashTypeNone,
  7. bool? dottedLine,
  8. List<BMFHollowShape>? hollowShapes,
  9. bool? clickable = false,
  10. int zIndex = 0,
  11. bool visible = true,
  12. Map? customMap}
)

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,
  this.clickable = false,
  int zIndex = 0,
  bool visible = true,
  Map? customMap,
}) : super(zIndex: zIndex, visible: visible, customMap: customMap);