width property

int width

Width of image.

The width of the image, or 0 if an error occurs.

Implementation

int get width {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Image_getWidth(
      _handle,
      errorHandler,
    );
  });
}