RotatedBoxModifier constructor

const RotatedBoxModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required int quarterTurns,
})

A widget that rotates its child.

The quarterTurns argument must not be null.

Implementation

const RotatedBoxModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.quarterTurns,
});