copyIntoArray method Null safety
Copies this into array starting at offset.
Implementation
void copyIntoArray(List<double> array, [int offset = 0]) {
array[offset + 1] = _v2storage[1];
array[offset + 0] = _v2storage[0];
}
Copies this into array starting at offset.
void copyIntoArray(List<double> array, [int offset = 0]) {
array[offset + 1] = _v2storage[1];
array[offset + 0] = _v2storage[0];
}