rotation property

int? get rotation

If set, updates the display's rotation. Legal values are 0, 90, 180, 270. The rotation is set clockwise, relative to the display's vertical position.

Implementation

int? get rotation => _wrapped.rotation;
set rotation (int? v)

Implementation

set rotation(int? v) {
  _wrapped.rotation = v;
}