firstChild property

Node? Function() get firstChild

Implementation

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

Implementation

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