PREVIEW property

PrintJobDisposition PREVIEW
final

Send to Preview application.

Officially Supported Platforms/Implementations:

  • MacOS

Implementation

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