Ticket1 constructor

Ticket1({
  1. int? id,
  2. String? ticketTitle,
  3. String? ticketContent,
  4. int? createdAt,
  5. int? updatedAt,
  6. dynamic countryCode,
  7. String? zip,
  8. String? arckipelTicketReference,
  9. String? customerTicketReference,
})

Implementation

Ticket1(
    {this.id,
    this.ticketTitle,
    this.ticketContent,
    this.createdAt,
    this.updatedAt,
    this.countryCode,
    this.zip,
    this.arckipelTicketReference,
    this.customerTicketReference});