remove method
Remove the specified named destination from the document.
Implementation
void remove(String title) {
int index = -1;
for (int i = 0; i < _namedCollections.length; i++) {
if (_namedCollections[i].title == title) {
index = i;
break;
}
}
removeAt(index);
}