status property

PrintJobStatus get status

The final status of the job.

Implementation

PrintJobStatus get status => PrintJobStatus.fromJS(_wrapped.status);
set status (PrintJobStatus v)

Implementation

set status(PrintJobStatus v) {
  _wrapped.status = v.toJS;
}