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