copyIntoArray method

void copyIntoArray(
  1. List<num> array,
  2. [int offset = 0]
)

Copies this into array starting at offset.

Implementation

void copyIntoArray(List<num> array, [int offset = 0]) {
  final i = offset;
  array[i + 3] = _m2storage[3];
  array[i + 2] = _m2storage[2];
  array[i + 1] = _m2storage[1];
  array[i + 0] = _m2storage[0];
}