jobId property

String? get jobId

The id of created print job. This is a unique identifier among all print jobs on the device. If status is not OK, jobId will be null.

Implementation

String? get jobId => _wrapped.jobId;
set jobId (String? v)

Implementation

set jobId(String? v) {
  _wrapped.jobId = v;
}