value<T> method

T value<T>([
  1. int index = 0
])

Gets value at index of values.

Trusts user that value at index is not null, use with caution.

Implementation

T value<T>([int index = 0]) => values[index] as T;