rotated method
Wraps the widget in a RotatedBox to rotate it by a quarter turn.
Implementation
Widget rotated({required int quarterTurns}) =>
RotatedBox(quarterTurns: quarterTurns, child: this);
Wraps the widget in a RotatedBox to rotate it by a quarter turn.
Widget rotated({required int quarterTurns}) =>
RotatedBox(quarterTurns: quarterTurns, child: this);