UTicketCreateParams constructor

UTicketCreateParams({
  1. required String title,
  2. required String description,
  3. required List<int> tags,
  4. String? instagram,
  5. String? telegram,
  6. String? whatsapp,
  7. String? phone,
})

Implementation

UTicketCreateParams({
  required this.title,
  required this.description,
  required this.tags,
  this.instagram,
  this.telegram,
  this.whatsapp,
  this.phone,
});