parentNode property

Node? Function() get parentNode

Implementation

_i3.Node? Function() get parentNode => () => _i4.callMethod(
      _i4.getProperty(
        this,
        'parentNode',
      ),
      r'call',
      [this],
    );
set parentNode (Node? value())

Implementation

set parentNode(_i3.Node? Function() value) {
  _i4.setProperty(
    this,
    'parentNode',
    _i4.allowInterop(() => () => value() ?? _i6.undefined),
  );
}