operator []= method
Stores a Dart value in 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 void operator []=(int index, int value);
Stores a Dart value in 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.
external void operator []=(int index, int value);