toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final offerId = this.offerId;
final preorderDetails = this.preorderDetails;
final purchaseOptionId = this.purchaseOptionId;
final quantity = this.quantity;
final rentalDetails = this.rentalDetails;
return {
'offerId': ?offerId,
'preorderDetails': ?preorderDetails,
'purchaseOptionId': ?purchaseOptionId,
'quantity': ?quantity,
'rentalDetails': ?rentalDetails,
};
}