TicketInfo constructor

TicketInfo({
  1. String? assignee,
  2. String? description,
  3. String? id,
  4. String? status,
  5. String? updateTime,
  6. String? uri,
})

Implementation

TicketInfo({
  this.assignee,
  this.description,
  this.id,
  this.status,
  this.updateTime,
  this.uri,
});