quarterTurns property
The number of clockwise quarter turns the child should be rotated.
Implementation
int get quarterTurns => _quarterTurns;
Implementation
set quarterTurns(int value) {
if (_quarterTurns == value) {
return;
}
_quarterTurns = value;
markNeedsLayout();
}