toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final confirmationCode = this.confirmationCode;
  final eticketNumber = this.eticketNumber;
  final frequentFlyerInfo = this.frequentFlyerInfo;
  final kind = this.kind;
  return {
    'confirmationCode': ?confirmationCode,
    'eticketNumber': ?eticketNumber,
    'frequentFlyerInfo': ?frequentFlyerInfo,
    'kind': ?kind,
  };
}