accessElement method

E? accessElement(
  1. int index
)

Returns the element at the given index, or null if out of range.

Implementation

E? accessElement(int index) {
  return _items.value.elementAtOrNull(index);
}