TicketBodyDataModel constructor

TicketBodyDataModel({
  1. String? title,
  2. String? message,
  3. String? categoryId,
})

Implementation

TicketBodyDataModel({
  this.title,
  this.message,
  this.categoryId,
});