nidAt method

int nidAt(
  1. int i
)

Returns the nid at visible position i. Unchecked — i must satisfy 0 <= i < length.

Implementation

int nidAt(int i) {
  return _orderNids[i];
}