copyIntoList method
Implementation
@override
Float32List copyIntoList(Float32List array, [int offset = 0]) {
array[offset] = storage[0];
array[offset + 1] = storage[1];
return array;
}
@override
Float32List copyIntoList(Float32List array, [int offset = 0]) {
array[offset] = storage[0];
array[offset + 1] = storage[1];
return array;
}