ListResourceValueConfigsResponse.fromJson constructor

ListResourceValueConfigsResponse.fromJson(
  1. 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(),
    );