ffiFreeString function
Implementation
void ffiFreeString(Pointer<Uint8ListFFI> pointer) {
if (pointer == nullptr) return;
calloc.free(pointer.ref.str);
calloc.free(pointer);
}
void ffiFreeString(Pointer<Uint8ListFFI> pointer) {
if (pointer == nullptr) return;
calloc.free(pointer.ref.str);
calloc.free(pointer);
}