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