toJson method

Map<String, dynamic> toJson()

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,
  };
}