setAsReceivedPendingMessageThatServerShouldReceive method

void setAsReceivedPendingMessageThatServerShouldReceive(
  1. String clientRequestId
)

Implementation

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