TicketModel constructor

TicketModel({
  1. int? serviceId,
  2. int? timeStart,
  3. int? timeStop,
  4. int? realStart,
  5. int? realStop,
  6. int? averageTime,
  7. int? status,
  8. String? statusName,
  9. String? accessCode,
  10. String? ticketUniqueId,
  11. String? friendlyTicketId,
  12. int? createdAt,
  13. int? updatedAt,
  14. int? position,
})

Implementation

TicketModel({
    this.serviceId,
    this.timeStart,
    this.timeStop,
    this.realStart,
    this.realStop,
    this.averageTime,
    this.status,
    this.statusName,
    this.accessCode,
    this.ticketUniqueId,
    this.friendlyTicketId,
    this.createdAt,
    this.updatedAt,
    this.position});