filter property

Iterator<T> Function(bool (T)) filter

Implementation

_i3.Iterator<T> Function(_i2.bool Function(T)) get filter =>
    (_i2.bool Function(T) p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'filter',
          ),
          r'call',
          [
            this,
            _i4.allowInterop(p0),
          ],
        );
void filter=(Iterator<T> value(bool (T)))

Implementation

set filter(_i3.Iterator<T> Function(_i2.bool Function(T)) value) {
  _i4.setProperty(
    this,
    'filter',
    _i4.allowInterop(value),
  );
}