toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currentState = this.currentState;
final deadLetterTopic = this.deadLetterTopic;
final desiredState = this.desiredState;
final pubsubConfig = this.pubsubConfig;
return {
'currentState': ?currentState,
'deadLetterTopic': ?deadLetterTopic,
'desiredState': ?desiredState,
'pubsubConfig': ?pubsubConfig,
};
}