A widget that rotates its child by a integral number of quarter turns.
Widget rotated({required int quaterTurns, Key? key}) { return RotatedBox( key: key, quarterTurns: quaterTurns, child: this, ); }