operator []= method - StructPointer extension - dart:ffi library (original) (raw)
void operator []=(
- int index,
- T value )
Copies the value
struct into native memory, starting ataddress * sizeOf<T>() * index
.
This extension method must be invoked on a receiver of type Pointer<T>
where T
is a compile-time constant type.
Implementation
external void operator []=(int index, T value);