CREATED property
Print job state: The print job is being created but not yet ready to be printed.
Next valid states: QUEUED.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - PrintJobInfo.STATE_CREATED)
- iOS
- MacOS
Implementation
static final CREATED = PrintJobState._internalMultiPlatform(1, () {
switch (defaultTargetPlatform) {
case TargetPlatform.android:
return 1;
case TargetPlatform.iOS:
return 1;
case TargetPlatform.macOS:
return 1;
default:
break;
}
return null;
});