toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deliveryConfig = this.deliveryConfig;
final exportConfig = this.exportConfig;
final name = this.name;
final topic = this.topic;
return {
'deliveryConfig': ?deliveryConfig,
'exportConfig': ?exportConfig,
'name': ?name,
'topic': ?topic,
};
}