indexOf method

int indexOf(
  1. T value
)

Implementation

int indexOf(T value) {
  return _list.indexOf(value);
}