printPageSize property

String printPageSize

Implementation

String get printPageSize => _getAttribute<String>(kPrintPageSize, '');
void printPageSize=(String? x)

Possible Values:

  • Widescreen (16x9)

  • Fullscreen (4x3)

  • A4

  • Letter

  • Legal

  • 11x17

pass null to remove key from attributes

Implementation

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