Ticket constructor

Ticket(
  1. {int? id,
  2. int? ticketId,
  3. String? ticketCode,
  4. String? qrCode,
  5. String? isTransfer,
  6. int? canTransfer,
  7. String? refId,
  8. int? price,
  9. TransferBy? transferTo,
  10. TransferBy? transferBy}
)

Implementation

Ticket({
  this.id,
  this.ticketId,
  this.ticketCode,
  this.qrCode,
  this.isTransfer,
  this.canTransfer,
  this.refId,
  this.price,
  this.transferTo,
  this.transferBy,
});