ExportConfig.fromJson constructor

ExportConfig.fromJson(
  1. Map json_
)

Implementation

ExportConfig.fromJson(core.Map json_)
  : this(
      currentState: json_['currentState'] as core.String?,
      deadLetterTopic: json_['deadLetterTopic'] as core.String?,
      desiredState: json_['desiredState'] as core.String?,
      pubsubConfig:
          json_.containsKey('pubsubConfig')
              ? PubSubConfig.fromJson(
                json_['pubsubConfig'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );