SPOOL property
final
Normal print job.
Officially Supported Platforms/Implementations:
- macOS WKWebView
Implementation
static final SPOOL = PrintJobDisposition._internalMultiPlatform('SPOOL', () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return 'spool';
default:
break;
}
return null;
});