lastChild property

Node? Function() get lastChild

Implementation

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

Implementation

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