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