printOrientation property

String printOrientation

Implementation

String get printOrientation => _getAttribute<String>(kPrintOrientation, '');
void printOrientation=(String? x)

Possible Values:

  • Portrait

  • Landscape

pass null to remove key from attributes

Implementation

set printOrientation(String? x) => (x == null)
    ? _attributes.remove(kPrintOrientation)
    : _attributes[kPrintOrientation] = x;