DescribePermissionSetResponse.fromJson constructor
Implementation
factory DescribePermissionSetResponse.fromJson(Map<String, dynamic> json) {
return DescribePermissionSetResponse(
permissionSet: json['PermissionSet'] != null
? PermissionSet.fromJson(
json['PermissionSet'] as Map<String, dynamic>)
: null,
);
}