copyIntoArray method

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

Copies this into array starting at offset.

Implementation

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