at method

T at(
  1. int index
)

Returns the element at

Implementation

T at(int index) {
  return value.elementAt(index);
}