COMPLETED property
Print job state: The print job is successfully printed. This is a terminal state.
Next valid states: None.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - PrintJobInfo.STATE_COMPLETED)
- iOS
- MacOS
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;
});