QUEUED property

PrintJobState QUEUED
final

Print job state: The print jobs is created, it is ready to be printed and should be processed.

Next valid states: STARTED, FAILED, CANCELED.

Supported Platforms/Implementations:

Implementation

static final QUEUED = PrintJobState._internalMultiPlatform(2, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 2;
    default:
      break;
  }
  return null;
});