Meta.fromJson constructor
Implementation
factory Meta.fromJson(Map<String, dynamic> json) => Meta(
adultPassengerLimit: json["adultPassengerLimit"],
comment: json["comment"],
createdAt: json["createdAt"],
currency: json["currency"],
expiryDate: json["expiryDate"],
id: json["id"],
isAddon: json["isAddon"],
isRenewal: json["isRenewal"],
isUpgrade: json["isUpgrade"],
maxOneRoundTripBooking: json["maxOneRoundTripBooking"],
maxOneWayTripBooking: json["maxOneWayTripBooking"],
name: json["name"],
neoMilesBonusEarned: json["neoMilesBonusEarned"],
neoMilesPaymentPercentage: json["neoMilesPaymentPercentage"],
neoMilesTransactionId: json["neoMilesTransactionId"],
neoOneMonthlySubscription: json["neoOneMonthlySubscription"],
originalPackageCurrency: json["originalPackageCurrency"],
originalPackagePrice: json["originalPackagePrice"],
package: json["package"],
passengerChangeCounter: json["passengerChangeCounter"],
paymentHash: json["paymentHash"],
paymentId: json["paymentId"],
price: json["price"],
status: json["status"],
subscriberId: json["subscriberId"],
type: json["type"],
updatedAt: json["updatedAt"],
wallet: json["wallet"],
);