BEST property
Renders the printing at the best possible quality, regardless of speed.
Officially Supported Platforms/Implementations:
- iOS
- MacOS
Implementation
static final BEST = PrintJobRenderingQuality._internalMultiPlatform(0, () {
switch (defaultTargetPlatform) {
case TargetPlatform.iOS:
return 0;
case TargetPlatform.macOS:
return 0;
default:
break;
}
return null;
});