toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final consentDeadlineTime = this.consentDeadlineTime;
final newPrice = this.newPrice;
final state = this.state;
return {
'consentDeadlineTime': ?consentDeadlineTime,
'newPrice': ?newPrice,
'state': ?state,
};
}