TicketDTO constructor

TicketDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? title,
  7. String? status,
  8. int? code,
  9. String? delegatedTo,
  10. List<Items>? items,
  11. List<User>? assignedUsers,
  12. User? createdUser,
  13. Category? category,
  14. StoreDTO? store,
})

Implementation

TicketDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.title,
    this.status,
    this.code,
    this.delegatedTo,
    this.items,
    this.assignedUsers,
    this.createdUser,
    this.category,
    this.store});