operator [] method

int operator [](
  1. int index
)

Retrieves the ID at the specified zero-based index.

Implementation

int operator [](int index) => _ids.elementAt(index);