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