map property

Iterator<S> Function<S>(S (KeyValuePair<K, T>)) get map

Implementation

_i3.Iterator<S> Function<S>(S Function(_i3.KeyValuePair<K, T>)) get map =>
    <S>(S Function(_i3.KeyValuePair<K, T>) p0) => _i4.callMethod(
          _i4.getProperty(
            this,
            'map',
          ),
          r'call',
          [
            this,
            _i4.allowInterop(p0),
          ],
        );
set map (Iterator<S> value<S>(S (KeyValuePair<K, T>)))

Implementation

set map(
    _i3.Iterator<S> Function<S>(S Function(_i3.KeyValuePair<K, T>)) value) {
  _i4.setProperty(
    this,
    'map',
    _i4.allowInterop(value),
  );
}