DESCENDING property
Descending (front to back) page order.
Officially Supported Platforms/Implementations:
- MacOS
Implementation
static final DESCENDING = PrintJobPageOrder._internalMultiPlatform(-1, () {
switch (defaultTargetPlatform) {
case TargetPlatform.macOS:
return -1;
default:
break;
}
return null;
});