copyResize method

void copyResize({
  1. int? width,
  2. int? height,
  3. Interpolation interpolation = Interpolation.nearest,
})

Implementation

void copyResize(
    {int? width,
    int? height,
    Interpolation interpolation = Interpolation.nearest}) {
  subCommand = CopyResizeCmd(subCommand,
      width: width, height: height, interpolation: interpolation);
}