SAVE property

PrintJobDisposition SAVE
final

Save to a file.

Supported Platforms/Implementations:

  • MacOS

Implementation

static final SAVE = PrintJobDisposition._internalMultiPlatform('SAVE', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 'save';
    default:
      break;
  }
  return null;
});