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