$ToolAuthenticationApiKeyConfig.fromJson constructor

$ToolAuthenticationApiKeyConfig.fromJson(
  1. Map json_
)

Implementation

$ToolAuthenticationApiKeyConfig.fromJson(core.Map json_)
  : this(
      apiKey: json_['apiKey'] as core.String?,
      keyName: json_['keyName'] as core.String?,
      requestLocation: json_['requestLocation'] as core.String?,
      secretVersionForApiKey: json_['secretVersionForApiKey'] as core.String?,
    );