GoogleCloudApihubV1ApiKeyConfig.fromJson constructor

GoogleCloudApihubV1ApiKeyConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApihubV1ApiKeyConfig.fromJson(core.Map json_)
  : this(
      apiKey:
          json_.containsKey('apiKey')
              ? GoogleCloudApihubV1Secret.fromJson(
                json_['apiKey'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      httpElementLocation: json_['httpElementLocation'] as core.String?,
      name: json_['name'] as core.String?,
    );