operator []= method Null safety

void operator []=(
  1. int index,
  2. double value
)

The float at address + 4 * index.

A Dart double loses precision before being stored, and the float value is converted to a double when it is loaded.

The address must be 4-byte aligned.

Implementation

external void operator []=(int index, double value);