fromOptionalPtr static method
Implementation
static PlatformView? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return fromNativePtr(ptr);
}
static PlatformView? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return fromNativePtr(ptr);
}