Source constructor

Source({
  1. String? createTime,
  2. String? description,
  3. String? displayName,
  4. int? errorFrameCount,
  5. bool? managed,
  6. String? name,
  7. int? pendingFrameCount,
  8. int? priority,
  9. String? state,
  10. String? type,
  11. String? updateTime,
})

Implementation

Source({
  this.createTime,
  this.description,
  this.displayName,
  this.errorFrameCount,
  this.managed,
  this.name,
  this.pendingFrameCount,
  this.priority,
  this.state,
  this.type,
  this.updateTime,
});