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