each property

void Function(void (T)) each

Implementation

void Function(void Function(T)) get each =>
    (void Function(T) p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'each',
          ),
          r'call',
          [
            this,
            _i4.allowInterop(p0),
          ],
        );
void each=(void value(void (T)))

Implementation

set each(void Function(void Function(T)) value) {
  _i4.setProperty(
    this,
    'each',
    _i4.allowInterop(value),
  );
}