free method

void free()

Implementation

void free() {
  if (Platform.isWindows) {
    calloc.free(_msvc);
  } else {
    calloc.free(_posix);
  }
}