TicketIndexResponseData constructor

TicketIndexResponseData({
  1. int? ticketId,
  2. String? header,
  3. String? message,
  4. TicketType? ticketType,
  5. DateTime? createDate,
  6. DateTime? changeDate,
  7. String? userId,
  8. String? userName,
})

Returns a new TicketIndexResponseData instance.

Implementation

TicketIndexResponseData({
  this.ticketId,
  this.header,
  this.message,
  this.ticketType,
  this.createDate,
  this.changeDate,
  this.userId,
  this.userName,
});