onDrawEnd property
VoidCallback?
get
onDrawEnd
Gets the onDrawEnd callback.
Called when the user completes the signature in RenderSignaturePad.
Implementation
VoidCallback? get onDrawEnd => _onDrawEnd;
set
onDrawEnd
(VoidCallback? value)
Sets the onDrawEnd callback.
Called when the user completes the signature in RenderSignaturePad.
Implementation
set onDrawEnd(VoidCallback? value) {
if (_onDrawEnd == value) {
return;
}
_onDrawEnd = value;
}