toJson method

Map<String, dynamic> toJson()

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,
  };
}