rotatedBox method

RotatedBox rotatedBox({
  1. Key? key,
  2. required int quarterTurns,
})

Implementation

RotatedBox rotatedBox({
  Key? key,
  required int quarterTurns,
}) {
  return RotatedBox(
    key: key,
    quarterTurns: quarterTurns,
    child: this,
  );
}