SAVE property
Save to a file.
Officially Supported Platforms/Implementations:
- MacOS
Implementation
static final SAVE = PrintJobDisposition._internalMultiPlatform('SAVE', () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return 'save';
default:
break;
}
return null;
});