free method

  1. @override
void free(
  1. int pointer
)
override

Provides access to the free function in WebAssembly.

Frees the memory region at pointer that was previously allocated with malloc.

Implementation

@override
void free(int pointer) => _free(pointer);