PathSignaturePainter constructor

PathSignaturePainter({
  1. required List<CubicPath> paths,
  2. Color color = Colors.black,
  3. double width = 1.0,
  4. double maxWidth = 10.0,
  5. bool onSize(
    1. Size size
    )?,
  6. SignatureDrawType type = SignatureDrawType.shape,
})

Path painter.

Implementation

PathSignaturePainter({
  required this.paths,
  this.color: Colors.black,
  this.width: 1.0,
  this.maxWidth: 10.0,
  this.onSize,
  this.type: SignatureDrawType.shape,
});