NONE property
final
No double-sided (duplex) printing; single-sided printing only.
Officially Supported Platforms/Implementations:
- Android WebView
- iOS WKWebView
- macOS WKWebView
- Windows WebView2
Implementation
static final NONE = PrintJobDuplexMode._internalMultiPlatform('NONE', () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 1;
case TargetPlatform.iOS:
return 0;
case TargetPlatform.macOS:
return 1;
case TargetPlatform.windows:
return 1;
default:
break;
}
return null;
});