Circle constructor

Circle({
  1. bool isEllipse = false,
  2. bool startFromCenter = true,
})

Implementation

Circle({
  /// 是否绘制椭圆(false为圆形)
  ///
  /// Whether to draw ellipse (false for circle)
  this.isEllipse = false,

  /// 是否从圆心开始绘制
  ///
  /// Whether to start drawing from center
  this.startFromCenter = true,
});