BookingTrips constructor

BookingTrips({
  1. String? id,
  2. String? flightClass,
  3. String? direction,
  4. String? ticketDownloadURL,
  5. int? totalDuration,
  6. int? stops,
  7. String? currency,
  8. String? adultCost,
  9. String? adultDiscountedPrice,
  10. String? adultOnlinePrice,
  11. int? mileageCost,
  12. String? source,
  13. String? program,
  14. String? neoPassMilesFee,
  15. String? searchCreditFee,
  16. String? cryptoFee,
  17. String? totalCost,
  18. String? totalDiscountedPrice,
  19. String? totalOnlinePrice,
  20. int? discountPercentage,
  21. String? bookingURL,
  22. String? createdAt,
  23. String? updatedAt,
  24. String? bookingReference,
  25. dynamic comment,
  26. bool? usedNeoMiles,
  27. String? duffelOfferId,
  28. String? tripSearchId,
  29. String? totalTax,
  30. String? costPerMile,
  31. String? profit,
  32. bool? searchCreditUsed,
  33. bool? isDiscountedFlight,
  34. String? bookingId,
  35. List<Flights>? flights,
  36. String? flightSubClass,
})

Implementation

BookingTrips(
    {this.id,
    this.flightClass,
    this.direction,
    this.ticketDownloadURL,
    this.totalDuration,
    this.stops,
    this.currency,
    this.adultCost,
    this.adultDiscountedPrice,
    this.adultOnlinePrice,
    this.mileageCost,
    this.source,
    this.program,
    this.neoPassMilesFee,
    this.searchCreditFee,
    this.cryptoFee,
    this.totalCost,
    this.totalDiscountedPrice,
    this.totalOnlinePrice,
    this.discountPercentage,
    this.bookingURL,
    this.createdAt,
    this.updatedAt,
    this.bookingReference,
    this.comment,
    this.usedNeoMiles,
    this.duffelOfferId,
    this.tripSearchId,
    this.totalTax,
    this.costPerMile,
    this.profit,
    this.searchCreditUsed,
    this.isDiscountedFlight,
    this.bookingId,
    this.flights,
    this.flightSubClass,
    });