getPointer method

Pointer<Uint64> getPointer()

Implementation

Pointer<Uint64> getPointer() {
  final ptr = malloc.allocate<Uint64>(length * 8);
  final typedList = ptr.asTypedList(length);
  typedList.setAll(0, this);
  return ptr.cast();
}