ConnectorConfigurationSecret.fromJson constructor

ConnectorConfigurationSecret.fromJson(
  1. Map json_
)

Implementation

ConnectorConfigurationSecret.fromJson(core.Map json_)
    : this(
        plaintext: json_.containsKey('plaintext')
            ? json_['plaintext'] as core.String
            : null,
        secretType: json_.containsKey('secretType')
            ? json_['secretType'] as core.String
            : null,
      );