CANCEL property

PrintJobDisposition CANCEL
final

Cancel print job.

Officially Supported Platforms/Implementations:

  • macOS WKWebView

Implementation

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