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