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