Ticket constructor

Ticket({
  1. Ticket1? ticket,
  2. List? agent,
  3. Customer? customer,
  4. Product? product,
  5. Place? place,
  6. Status1? status,
  7. _ProblemType? problemType,
  8. int? platformId,
  9. Answer? answer,
})

Implementation

Ticket(
    {this.ticket,
    this.agent,
    this.customer,
    this.product,
    this.place,
    this.status,
    this.problemType,
    this.platformId,
    this.answer});