TransferTicketData constructor

TransferTicketData(
  1. {int? userId,
  2. int? bookingId,
  3. int? ticketId,
  4. int? transferBy,
  5. String? updatedAt,
  6. String? createdAt,
  7. int? id}
)

Implementation

TransferTicketData({
  this.userId,
  this.bookingId,
  this.ticketId,
  this.transferBy,
  this.updatedAt,
  this.createdAt,
  this.id,
});