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