removeCredentialSet method

bool removeCredentialSet(
  1. CredentialSet credentialSet
)

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;
}