toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final countryCode = this.countryCode;
final date = this.date;
final deliveryGuaranteeDate = this.deliveryGuaranteeDate;
final deliveryGuaranteeHour = this.deliveryGuaranteeHour;
final id = this.id;
final type = this.type;
return {
'countryCode': ?countryCode,
'date': ?date,
'deliveryGuaranteeDate': ?deliveryGuaranteeDate,
'deliveryGuaranteeHour': ?deliveryGuaranteeHour,
'id': ?id,
'type': ?type,
};
}