PrintJobController constructor

PrintJobController({
  1. required String id,
})

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

Implementation

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