oncomplete property

(void Function()?) oncomplete

Execute a function when the mask is completed.

Implementation

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

Implementation

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