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