freePtrFunc method
Implementation
@override
void Function(Pointer) freePtrFunc() {
try {
return nativeLib().lookup<NativeFunction<Void Function(Pointer)>>(nativeFuncName("freePtr")).asFunction();
} catch (e) {
return calloc.free;
}
}
@override
void Function(Pointer) freePtrFunc() {
try {
return nativeLib().lookup<NativeFunction<Void Function(Pointer)>>(nativeFuncName("freePtr")).asFunction();
} catch (e) {
return calloc.free;
}
}