toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final buyerApprovalState = this.buyerApprovalState;
final costMicros = this.costMicros;
final costType = this.costType;
final currencyCode = this.currencyCode;
final endTime = this.endTime;
final maxCostMicros = this.maxCostMicros;
final pricingActive = this.pricingActive;
final pricingId = this.pricingId;
final startTime = this.startTime;
return {
'buyerApprovalState': ?buyerApprovalState,
'costMicros': ?costMicros,
'costType': ?costType,
'currencyCode': ?currencyCode,
'endTime': ?endTime,
'maxCostMicros': ?maxCostMicros,
'pricingActive': ?pricingActive,
'pricingId': ?pricingId,
'startTime': ?startTime,
};
}