SPECIAL property

PrintJobPageOrder SPECIAL
final

The spooler does not rearrange pages—they are printed in the order received by the spooler.

Officially Supported Platforms/Implementations:

  • MacOS

Implementation

static final SPECIAL = PrintJobPageOrder._internalMultiPlatform(0, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.macOS:
      return 0;
    default:
      break;
  }
  return null;
});