isComplete property

(bool Function(List<String>, Options)?) isComplete

With this call-in (hook) you can override the default implementation of the isComplete function.

Implementation

_i2.bool Function(
  _i2.List<_i2.String>,
  _i3.Options,
)? get isComplete => (
      _i2.List<_i2.String> p0,
      _i3.Options p1,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'isComplete',
          ),
          r'call',
          [
            this,
            p0,
            p1,
          ],
        );
void isComplete=(bool value(List<String>, Options)?)

Implementation

set isComplete(
    _i2.bool Function(
      _i2.List<_i2.String>,
      _i3.Options,
    )? value) {
  _i4.setProperty(
    this,
    'isComplete',
    value == null ? _i6.undefined : _i4.allowInterop(value),
  );
}