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