UTicketJson constructor

UTicketJson({
  1. required String title,
  2. required String description,
  3. String? detail1,
  4. String? detail2,
  5. String? instagram,
  6. String? telegram,
  7. String? whatsapp,
  8. String? phone,
})

Implementation

UTicketJson({
  required this.title,
  required this.description,
  this.detail1,
  this.detail2,
  this.instagram,
  this.telegram,
  this.whatsapp,
  this.phone,
});