removeCredentialSet method
Removes a credentialSet from the query.
Returns true if the credential set was in the list, false otherwise.
Implementation
bool removeCredentialSet(CredentialSet credentialSet) {
return credentialSets?.remove(credentialSet) ?? false;
}