RotatedBox({Key key, @required int quarterTurns, Widget child })

A widget that rotates its child.

The quarterTurns argument must not be null.

Source

RotatedBox({
  Key key,
  @required this.quarterTurns,
  Widget child
}) : super(key: key, child: child) {
  assert(quarterTurns != null);
}