first property

KeyValuePair<K, T>? Function() get first

Implementation

_i3.KeyValuePair<K, T>? Function() get first => () => _i4.callMethod(
      _i4.getProperty(
        this,
        'first',
      ),
      r'call',
      [this],
    );
set first (KeyValuePair<K, T>? value())

Implementation

set first(_i3.KeyValuePair<K, T>? Function() value) {
  _i4.setProperty(
    this,
    'first',
    _i4.allowInterop(() => () => value() ?? _i5.undefined),
  );
}