getItem method

D getItem(
  1. int index
)

Implementation

D getItem(int index) {
  if (index >= dataListSize) {
    throw Exception("index:$index out of bound");
  }
  return data[index];
}