DescribeParameterGroupsResponse.fromJson constructor
Implementation
factory DescribeParameterGroupsResponse.fromJson(Map<String, dynamic> json) {
return DescribeParameterGroupsResponse(
nextToken: json['NextToken'] as String?,
parameterGroups: (json['ParameterGroups'] as List?)
?.whereNotNull()
.map((e) => ParameterGroup.fromJson(e as Map<String, dynamic>))
.toList(),
);
}