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