cancel method
void
cancel()
Cancel this editor.
This method has no effect if onCancel is null
.
Implementation
void cancel() {
final f = onCancel;
if (f != null) {
f();
}
}
Cancel this editor.
This method has no effect if onCancel is null
.
void cancel() {
final f = onCancel;
if (f != null) {
f();
}
}