removeClaimSet method
Removes a claim set from the credential and returns the updated credential.
Implementation
Credential<C> removeClaimSet(List<String> ids) {
claimSets ??= [];
claimSets!.removeWhere((claimSet) => claimSet == ids);
return this;
}