QUEUED property
Print job state: The print jobs is created, it is ready to be printed and should be processed.
Next valid states: STARTED, FAILED, CANCELED.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - PrintJobInfo.STATE_QUEUED)
Implementation
static final QUEUED = PrintJobState._internalMultiPlatform(2, () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 2;
default:
break;
}
return null;
});