SignatureController constructor

SignatureController({
  1. List<Point>? points,
  2. bool disabled = false,
  3. Color penColor = Colors.black,
  4. StrokeCap strokeCap = StrokeCap.butt,
  5. StrokeJoin strokeJoin = StrokeJoin.miter,
  6. double penStrokeWidth = 3.0,
  7. Color? exportBackgroundColor,
  8. Color? exportPenColor,
  9. VoidCallback? onDrawStart,
  10. VoidCallback? onDrawMove,
  11. VoidCallback? onDrawEnd,
})

constructor

Implementation

SignatureController({
  List<Point>? points,
  this.disabled = false,
  this.penColor = Colors.black,
  this.strokeCap = StrokeCap.butt,
  this.strokeJoin = StrokeJoin.miter,
  this.penStrokeWidth = 3.0,
  this.exportBackgroundColor,
  this.exportPenColor,
  this.onDrawStart,
  this.onDrawMove,
  this.onDrawEnd,
}) : super(points ?? <Point>[]);