FakeSharedBuffer constructor

FakeSharedBuffer(
  1. int byteLength
)

Allocates byteLength bytes of zeroed fake-shared memory.

Implementation

FakeSharedBuffer(int byteLength) : _bytes = Uint8List(byteLength);