operator [] method - PointerArray extension - dart:ffi library (original) (raw)
Pointer<T> operator [](
- int index )
Loads a Dart value from this array at index
.
This extension method must be invoked on a receiver of type Array<T>
where T
is a compile-time constant type.
Implementation
external Pointer<T> operator [](int index);