height property

int height

Height of image.

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

Implementation

int get height {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Image_getHeight(
      _handle,
      errorHandler,
    );
  });
}