RotateRightFixed constructor

RotateRightFixed(
  1. Logic original,
  2. int rotateAmount, {
  3. String name = 'rotate_fixed',
})

Rotates original by rotateAmount to the right.

Implementation

RotateRightFixed(Logic original, int rotateAmount, {super.name})
    : super(RotateDirection.right, original, rotateAmount);