toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deliverTime = this.deliverTime;
final key = this.key;
final payload = this.payload;
final queue = this.queue;
return {
'deliverTime': ?deliverTime,
'key': ?key,
'payload': ?payload,
'queue': ?queue,
};
}