ConnectorConfigurationSecret.fromJson constructor

ConnectorConfigurationSecret.fromJson(
  1. Map json_
)

Implementation

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