fromNativePtr static method
Implementation
static ImageWrapper fromNativePtr(Pointer<Void> handle) {
if (handle == nullptr) {
throw StateError('Expected non-null ImageWrapper handle.');
}
return ImageWrapper._(handle);
}
static ImageWrapper fromNativePtr(Pointer<Void> handle) {
if (handle == nullptr) {
throw StateError('Expected non-null ImageWrapper handle.');
}
return ImageWrapper._(handle);
}