Return the first child of this node, or null if there are no children.
null
@override XmlNode? get firstChild => children.isEmpty ? null : children.first;