fromNative static method
Implementation
static ImageImageSize fromNative(ImageImageSizeNative native) {
return ImageImageSize(
size: to_platform.toPlatformString(native.size),
width: to_platform.toPlatformFromPointerUint32(native.width),
height: to_platform.toPlatformFromPointerUint32(native.height));
}