DartHeapPointer constructor

DartHeapPointer(
  1. Uint8List _bytes, {
  2. int offset = 0,
})

Construct a pointer on the Uint8List bytes with a default offset of 0.

Read and write pointers will have their offsets adjusted as more is read or written from the buffers.

Implementation

DartHeapPointer(this._bytes, {this.offset = 0});