CANCEL property

PrintJobDisposition CANCEL
final

Cancel print job.

Officially Supported Platforms/Implementations:

  • MacOS

Implementation

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