release method

void release()

Implementation

void release() {
  if (_staticValuesRef != null) {
    calloc.free(_staticValuesRef!);
  }
  if (_staticFunctionsRef != null) {
    calloc.free(_staticFunctionsRef!);
  }
  calloc.free(_ref);
}