nextNode property

Node? Function() get nextNode

Implementation

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

Implementation

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