BatchCreateResourceValueConfigsResponse.fromJson constructor

BatchCreateResourceValueConfigsResponse.fromJson(
  1. Map json_
)

Implementation

BatchCreateResourceValueConfigsResponse.fromJson(core.Map json_)
    : this(
        resourceValueConfigs: json_.containsKey('resourceValueConfigs')
            ? (json_['resourceValueConfigs'] as core.List)
                .map((value) =>
                    GoogleCloudSecuritycenterV1ResourceValueConfig.fromJson(
                        value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );