BezierBackgroundPaint constructor

BezierBackgroundPaint(
  1. dynamic start,
  2. dynamic firstStop,
  3. dynamic secondStop,
  4. dynamic lastStop,
  5. dynamic firstControl,
  6. dynamic secondControl,
  7. dynamic lastControl,
  8. Color color,
  9. bool interactive,
)

Implementation

BezierBackgroundPaint(
    this.start,
    this.firstStop,
    this.secondStop,
    this.lastStop,
    this.firstControl,
    this.secondControl,
    this.lastControl,
    this.color,
    this.interactive,
    ) : _paint = Paint()
  ..color = color
  ..style = PaintingStyle.fill;