removeFirst method

bool removeFirst(
  1. T value
)

Implementation

bool removeFirst(T value) {
  return _list.remove(value);
}