FillPainter constructor

FillPainter(
  1. {dynamic circleColor,
  2. dynamic lineColor,
  3. bool first: false,
  4. bool last: false,
  5. double overflow: 8.0}
)

Implementation

FillPainter(
    {this.circleColor,
    this.lineColor,
    this.first = false,
    this.last = false,
    this.overflow = 8.0})
    : super();