setAuthentication method
Implementation
void setAuthentication(String key, Authentication? auth) {
if (auth == null) {
_authentications.remove(key);
} else {
_authentications[key] = auth;
}
}
void setAuthentication(String key, Authentication? auth) {
if (auth == null) {
_authentications.remove(key);
} else {
_authentications[key] = auth;
}
}