first property
Implementation
Node get first {
if (this.length > 0) {
return JS('Node', '#[0]', this);
}
throw new StateError("No elements");
}
Node get first {
if (this.length > 0) {
return JS('Node', '#[0]', this);
}
throw new StateError("No elements");
}