Job constructor

Job({
  1. String? arn,
  2. Counters? counters,
  3. DateTime? created,
  4. Device? device,
  5. DeviceMinutes? deviceMinutes,
  6. String? instanceArn,
  7. String? message,
  8. String? name,
  9. ExecutionResult? result,
  10. DateTime? started,
  11. ExecutionStatus? status,
  12. DateTime? stopped,
  13. TestType? type,
  14. bool? videoCapture,
  15. String? videoEndpoint,
})

Implementation

Job({
  this.arn,
  this.counters,
  this.created,
  this.device,
  this.deviceMinutes,
  this.instanceArn,
  this.message,
  this.name,
  this.result,
  this.started,
  this.status,
  this.stopped,
  this.type,
  this.videoCapture,
  this.videoEndpoint,
});