elementAt method Null safety

Pointer<T> elementAt(
  1. int index
)

Pointer arithmetic (takes element size into account).

This method must be invoked with a compile-time constant T.

Does not accept dynamic invocations -- where the type of the receiver is dynamic.

Implementation

external Pointer<T> elementAt(int index);