get property

V? Function(K) get get

Implementation

V? Function(K) get get => (K p0) => _i4.callMethod(
      _i4.getProperty(
        this,
        'get',
      ),
      r'call',
      [
        this,
        p0,
      ],
    );
set get (V? value(K))

Implementation

set get(V? Function(K) value) {
  _i4.setProperty(
    this,
    'get',
    _i4.allowInterop((p0) => () => value(p0) ?? _i5.undefined),
  );
}