printCurrentPage method
Prints the current page.
To obtain the PlatformPrintJobController, use settings
argument with PrintJobSettings.handledByClient to true
.
Otherwise this method will return null
and the PlatformPrintJobController will be handled and disposed automatically by the system.
NOTE for Android: available on Android 19+.
NOTE for MacOS: PlatformPrintJobController is available on MacOS 11.0+.
NOTE for Web: this method will have effect only if the iframe has the same origin. Also, PlatformPrintJobController is always null
.
Officially Supported Platforms/Implementations:
- Android native WebView (Official API - PrintManager.print)
- iOS (Official API - UIPrintInteractionController.present)
- MacOS (if 11.0+, Official API - WKWebView.printOperation, else Official API - NSView.printView)
- Web (Official API - Window.print)
Implementation
Future<PlatformPrintJobController?> printCurrentPage(
{PrintJobSettings? settings}) {
throw UnimplementedError(
'printCurrentPage is not implemented on the current platform');
}