toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final buyerCountry = this.buyerCountry;
final buyerPostcode = this.buyerPostcode;
final buyerState = this.buyerState;
return {
'buyerCountry': ?buyerCountry,
'buyerPostcode': ?buyerPostcode,
'buyerState': ?buyerState,
};
}