indexOf method

int indexOf(
  1. dynamic key
)

Implementation

int indexOf(dynamic key) {
  return _queue.indexOf(key);
}