BMFDot constructor

BMFDot(
  1. {@required BMFCoordinate center,
  2. @required double radius,
  3. @required Color color,
  4. int zIndex: 0,
  5. bool visible: true}
)

BMFDot构造方法

Implementation

BMFDot({
  @required this.center,
  @required this.radius,
  @required this.color,
  int zIndex: 0,
  bool visible: true,
})  : assert(center != null),
      assert(radius != null),
      assert(color != null),
      super(zIndex: zIndex, visible: visible);