toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final confirmationCode = this.confirmationCode;
  final purchaseDateTime = this.purchaseDateTime;
  final purchaseReceiptNumber = this.purchaseReceiptNumber;
  final ticketCost = this.ticketCost;
  return {
    'accountId': ?accountId,
    'confirmationCode': ?confirmationCode,
    'purchaseDateTime': ?purchaseDateTime,
    'purchaseReceiptNumber': ?purchaseReceiptNumber,
    'ticketCost': ?ticketCost,
  };
}