Rotate constructor

const Rotate(
  1. int depth,
  2. int steps
)

Implementation

const Rotate(this.depth, this.steps)
    : assert(depth > 1),
      assert(steps > 0);