landscape property
PdfPageFormat
get
landscape
Landscape orientation variant.
Implementation
PdfPageFormat get landscape =>
width >= height ? this : copyWith(width: height, height: width);
Landscape orientation variant.
PdfPageFormat get landscape =>
width >= height ? this : copyWith(width: height, height: width);