get method

T? get(
  1. int index
)

Implementation

T? get(int index) {
  try {
    return this[index];
  } catch (err) {
    return null;
  }
}