FormBuilderInput.signaturePad constructor
FormBuilderInput.signaturePad({@required InputDecoration decoration, @required String attribute, bool readonly: false, Color penColor: Colors.black, double penStrokeWidth: 3, double width, List<Point> points, double height: 250, Color backgroundColor: Colors.white70, dynamic value, bool require: false, FormFieldValidator validator })
Implementation
FormBuilderInput.signaturePad({
@required this.decoration,
@required this.attribute,
this.readonly = false,
this.penColor = Colors.black,
this.penStrokeWidth = 3,
this.width,
this.points,
this.height = 250,
this.backgroundColor = Colors.white70,
this.value,
this.require = false,
this.validator,
}) {
type = FormBuilderInput.TYPE_SIGNATURE_PAD;
}