GoogleCloudRunV2SecretKeySelector.fromJson constructor

GoogleCloudRunV2SecretKeySelector.fromJson(
  1. Map json_
)

Implementation

GoogleCloudRunV2SecretKeySelector.fromJson(core.Map json_)
    : this(
        secret: json_.containsKey('secret')
            ? json_['secret'] as core.String
            : null,
        version: json_.containsKey('version')
            ? json_['version'] as core.String
            : null,
      );