atOrNull method

T? atOrNull(
  1. int index
)

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

Implementation

T? atOrNull(int index) {
  return value.elementAtOrNull(index);
}