freeNative method

  1. @override
void freeNative()
override

Frees the native resources owned by this wrapper. Subclasses implement the concrete free logic here; callers must use dispose instead.

Implementation

@override
void freeNative() {
  finalizer.detach(this);
  ccore.std_VecVecChar_free(ptr);
}