stringFree static method

void stringFree(
  1. Pointer<Utf8> ptr
)

Free a string that was allocated by syni_string_free (rare — usually the high-level methods handle this for callers).

Implementation

static void stringFree(Pointer<Utf8> ptr) {
  initialize();
  _stringFree!(ptr);
}