item method
Implementation
AccessibleNode item(int index) {
if (this is _AccessibleNodeListImpl) {
return (this as _AccessibleNodeListImpl).item(index);
}
throw RangeError.index(index, const <AccessibleNode>[]);
}
AccessibleNode item(int index) {
if (this is _AccessibleNodeListImpl) {
return (this as _AccessibleNodeListImpl).item(index);
}
throw RangeError.index(index, const <AccessibleNode>[]);
}