pendingArgs method

Uint8List? pendingArgs(
  1. int requestId
)

BSATN-encoded args the SDK sent for the in-flight request. Used by the caller-side ReducerResult handler to construct the ReducerEvent without re-decoding from the (non-existent) wire copy.

Implementation

Uint8List? pendingArgs(int requestId) {
  return _pendingRequests[requestId]?.args;
}