COMPLETED property

PrintJobState COMPLETED
final

Print job state: The print job is successfully printed. This is a terminal state.

Next valid states: None.

Officially Supported Platforms/Implementations:

Implementation

static final COMPLETED = PrintJobState._internalMultiPlatform(5, () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.android:
      return 5;
    case TargetPlatform.iOS:
      return 5;
    case TargetPlatform.macOS:
      return 5;
    default:
      break;
  }
  return null;
});