resizeImage static method

Image resizeImage({
  1. required Image image,
  2. required int width,
  3. required int height,
})

Implementation

static Image resizeImage({required Image image, required int width, required int height}) {
  return copyResize(image, width: width, height: height, interpolation: Interpolation.average);
}