ptrValue property

  1. @tryInline
Pointer<void> get ptrValue

Implementation

@tryInline
Pointer<void> get ptrValue => jsDatabaseUniverse.u32Heap[address ~/ 4];
  1. @tryInline
set ptrValue (Pointer<void> ptr)

Implementation

@tryInline
set ptrValue(Pointer<void> ptr) =>
    jsDatabaseUniverse.u32Heap[address ~/ 4] = ptr;