resize method

ImageProperties resize(
  1. int newWidth,
  2. int newHeight
)

Implementation

ImageProperties resize(int newWidth, int newHeight) {
  return ImageProperties(
    format: format,
    width: newWidth,
    height: newHeight,
    colorSpace: colorSpace,
  );
}