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