remove method

void remove(
  1. T element
)

Removes the first occurrence of element from the vector.

Implementation

void remove(T element) => _data.remove(element);