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