DescribeProtectionGroupResponse.fromJson constructor
Implementation
factory DescribeProtectionGroupResponse.fromJson(Map<String, dynamic> json) {
return DescribeProtectionGroupResponse(
protectionGroup: ProtectionGroup.fromJson(
json['ProtectionGroup'] as Map<String, dynamic>),
);
}