nextSibling property

Node? Function() get nextSibling

Implementation

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

Implementation

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