HandSignaturePaint constructor
const
HandSignaturePaint({
- Key? key,
- required HandSignatureControl control,
- Color color = Colors.black,
- double width = 1.0,
- double maxWidth = 10.0,
- SignatureDrawType type = SignatureDrawType.shape,
- bool onSize(
- Size size
Draws path based on data from control
.
Implementation
const HandSignaturePaint({
Key? key,
required this.control,
this.color: Colors.black,
this.width: 1.0,
this.maxWidth: 10.0,
this.type: SignatureDrawType.shape,
this.onSize,
}) : super(key: key);