SignatureControllerIns constructor

SignatureControllerIns({
  1. List<Point>? points,
  2. double penStrokeWidth = 3.0,
  3. Color penColor = Colors.black,
  4. Color? exportPenColor,
  5. Color? exportBackgroundColor,
  6. VoidCallback? onDrawStart,
  7. VoidCallback? onDrawEnd,
  8. VoidCallback? onDrawMove,
})

Implementation

SignatureControllerIns({
  super.points,
  super.penStrokeWidth,
  super.penColor,
  super.exportPenColor,
  super.exportBackgroundColor,
  super.onDrawStart,
  super.onDrawEnd,
  super.onDrawMove,
});