oncleared property

(void Function()?) oncleared

Execute a function when the mask is cleared.

Implementation

void Function()? get oncleared => () => _i4.callMethod(
      _i4.getProperty(
        this,
        'oncleared',
      ),
      r'call',
      [this],
    );
void oncleared=(void value()?)

Implementation

set oncleared(void Function()? value) {
  _i4.setProperty(
    this,
    'oncleared',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}