getPendingAuthRequests method
Implementation
@override
Map<int, PendingAuthRequest> getPendingAuthRequests() {
Map<int, PendingAuthRequest> pendingRequests = {};
authRequests.getAll().forEach((key) {
pendingRequests[key.id] = key;
});
return pendingRequests;
}