setAsReceivedPendingMessageThatServerShouldReceive method
Implementation
void setAsReceivedPendingMessageThatServerShouldReceive(String clientRequestId) {
// _lockPendingRequestsList.synchronized(() async {
final pending = _pendingRequestsList.firstWhereOrNull((p) => p.data.clientRequestId == clientRequestId,);
pending?.serverReceived = true;
// });
}