Ticket constructor

Ticket({
  1. int? ticketId,
  2. required String header,
  3. required String message,
  4. required TicketType? ticketType,
  5. TicketApplicationUser? applicationUser,
  6. DateTime? createDate,
  7. DateTime? changeDate,
})

Returns a new Ticket instance.

Implementation

Ticket({
  this.ticketId,
  required this.header,
  required this.message,
  required this.ticketType,
  this.applicationUser,
  this.createDate,
  this.changeDate,
});