copyRotate method

void copyRotate({
  1. required num angle,
  2. Interpolation interpolation = Interpolation.nearest,
})

Implementation

void copyRotate(
    {required num angle,
    Interpolation interpolation = Interpolation.nearest}) {
  subCommand =
      CopyRotateCmd(subCommand, angle: angle, interpolation: interpolation);
}