job property
      
      PrintJob
      get
      job
      
    
    
The print job to be submitted.
The only supported content type is "application/pdf", and the
Cloud Job Ticket
shouldn't include FitToPageTicketItem,
PageRangeTicketItem, ReverseOrderTicketItem
and VendorTicketItem fields since they are
irrelevant for native printing. All other fields must be present.
Implementation
PrintJob get job => PrintJob.fromJS(_wrapped.job);
      
      set
      job
      (PrintJob v) 
      
    
    
    
Implementation
set job(PrintJob v) {
  _wrapped.job = v.toJS;
}