copyRectify method

void copyRectify({
  1. required Point topLeft,
  2. required Point topRight,
  3. required Point bottomLeft,
  4. required Point bottomRight,
  5. Interpolation interpolation = Interpolation.nearest,
})

Implementation

void copyRectify(
    {required Point topLeft,
    required Point topRight,
    required Point bottomLeft,
    required Point bottomRight,
    Interpolation interpolation = Interpolation.nearest}) {
  subCommand = CopyRectifyCmd(subCommand,
      topLeft: topLeft,
      topRight: topRight,
      bottomLeft: bottomLeft,
      bottomRight: bottomRight,
      interpolation: interpolation);
}