removeOnAuthenticatedCallback method
Remove a previously added authenticated callback. Returns true if the callback was found and removed.
Implementation
@override
bool removeOnAuthenticatedCallback(Future<void> Function(String? uid) callback) {
for (final callbacks in _onAuthenticatedByPriority.values) {
if (callbacks.remove(callback)) return true;
}
return false;
}