DEFAULT property
final
Monochrome color scheme, for example one color is used.
Officially Supported Platforms/Implementations:
- Android WebView
- Windows WebView2
Implementation
static final DEFAULT = PrintJobColorMode._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 0;
case TargetPlatform.windows:
return 0;
default:
break;
}
return null;
});