first property

Node? first
inherited

Returns the first child Node.

Implementation

Node? get first => isEmpty ? null : _children.first;