getCountResponseCallBack method

(void Function(NostrCountResponse countResponse)?) getCountResponseCallBack(
  1. String subscriptionId
)

Returns a count response callback from the registry with the given subscriptionId.

Implementation

void Function(
  NostrCountResponse countResponse,
)? getCountResponseCallBack(String subscriptionId) {
  return countResponseCallBacks[subscriptionId];
}