rotateSelection method

void rotateSelection({
  1. required bool clockwise,
  2. int? timestampMs,
})

Rotates the transformable selection by 90 degrees.

Implementation

void rotateSelection({required bool clockwise, int? timestampMs}) {
  _sceneCommands.rotateSelection(
    clockwise: clockwise,
    timestampMs: timestampMs,
  );
}