fromNative static method

ImageImageSize fromNative(
  1. ImageImageSizeNative native
)

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));
}