COLOR property
Color color scheme, for example many colors are used.
Officially Supported Platforms/Implementations:
- Android native WebView
- MacOS
Implementation
static final COLOR = PrintJobColorMode._internalMultiPlatform(2, () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 1;
case TargetPlatform.macOS:
return 'RGB';
default:
break;
}
return null;
});