TicketBody constructor

TicketBody({
  1. String? storeId,
  2. String? title,
  3. String? message,
  4. String? categoryId,
  5. List<File>? files,
})

Implementation

TicketBody({
  this.storeId,
  this.title,
  this.message,
  this.categoryId,
  this.files,
});