asTypedList method
Returns a typed view of this buffer. Note: The lifetime of this view is tied to the lifetime of this FfiBufferUint64. This Uint64List must not live longer than the creating FfiBufferUint64
Implementation
Uint64List asTypedList() {
final buffer = _box.borrow();
final addressRaw = _api._ffiBufferAddress(buffer);
final size = _api._ffiBufferSize(buffer) ~/ 8;
return ffi.Pointer<ffi.Uint64>.fromAddress(addressRaw).asTypedList(size);
}