PREVIEW property

PrintJobDisposition PREVIEW
final

Send to Preview application.

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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