onincomplete property
void Function()?
get
onincomplete
Execute a function when the mask is cleared.
Implementation
void Function()? get onincomplete => () => _i4.callMethod(
_i4.getProperty(
this,
'onincomplete',
),
r'call',
[this],
);
set
onincomplete
(void value()?)
Implementation
set onincomplete(void Function()? value) {
_i4.setProperty(
this,
'onincomplete',
value == null ? _i6.undefined : _i4.allowInterop(value),
);
}