heap property

  1. @override
ByteBuffer heap
override

Provides access to the WebAssemblys memory buffer.

The actual ByteBuffer object returned by this getter is allowed to change; It should not be cached in a state variable and is thus annotated with @doNotStore.

Implementation

@override
ByteBuffer get heap => throw new UnsupportedError(
    'Emscripten operations are only allowed on the web (where dart:js is present)!');