fromPointer static method
Implementation
static SearchPhone? fromPointer(ffi.Pointer<ffi.Void> ptr,
{core.bool needFree = true}) {
if (ptr == ffi.nullptr) {
return null;
}
final result =
SearchPhoneImpl.fromNative(ptr.cast<SearchPhoneNative>().ref);
if (needFree) {
malloc.free(ptr);
}
return result;
}