picker method

T? picker(
  1. int i
)

Implementation

T? picker(int i) => length <= i ? null : this[i];