remove method
- T element
Removes the first occurrence of element from the vector.
Implementation
void remove(T element) => _data.remove(element);
Removes the first occurrence of element from the vector.
void remove(T element) => _data.remove(element);