LANDSCAPE property
Pages are printed in landscape orientation.
Officially Supported Platforms/Implementations:
- iOS
- MacOS
Implementation
static final LANDSCAPE = PrintJobOrientation._internalMultiPlatform(1, () {
switch (defaultTargetPlatform) {
case TargetPlatform.iOS:
return 1;
case TargetPlatform.macOS:
return 1;
default:
break;
}
return null;
});