PrintJobController constructor

PrintJobController({
  1. required String id,
  2. PrintJobCompletionHandler? onComplete,
})

Class representing a print job eventually returned by PlatformInAppWebViewController.printCurrentPage.

Officially Supported Platforms/Implementations:

  • Android native WebView
  • iOS
  • MacOS

Implementation

PrintJobController({required String id, PrintJobCompletionHandler onComplete})
    : this.fromPlatformCreationParams(
          params: PlatformPrintJobControllerCreationParams(
              id: id, onComplete: onComplete));