asTypedList method

Uint8List asTypedList()

Returns a typed view of this buffer. Note: The lifetime of this view is tied to the lifetime of this FfiBufferUint8. This Uint8List must not live longer than the creating FfiBufferUint8

Implementation

Uint8List asTypedList() {
  final buffer = _box.borrow();
  final addressRaw = _api._ffiBufferAddress(buffer);
  final size = _api._ffiBufferSize(buffer) ~/ 1;
  return ffi.Pointer<ffi.Uint8>.fromAddress(addressRaw).asTypedList(size);
}