copyIntoNativeArray method

  1. @override
NativeArray<num> copyIntoNativeArray(
  1. NativeArray<num> array, [
  2. int offset = 0
])
override

Implementation

@override
NativeArray copyIntoNativeArray(NativeArray array, [int offset = 0]) {
  array[offset] = storage[0];
  array[offset + 1] = storage[1];

  return array;
}