Ticket constructor
- {int? id,
- int? ticketId,
- String? ticketCode,
- String? qrCode,
- String? isTransfer,
- int? canTransfer,
- String? refId,
- int? price,
- TransferBy? transferTo,
- TransferBy? transferBy}
Implementation
Ticket({
this.id,
this.ticketId,
this.ticketCode,
this.qrCode,
this.isTransfer,
this.canTransfer,
this.refId,
this.price,
this.transferTo,
this.transferBy,
});