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