getEoseCommandCallBack method

(void Function(NostrRequestEoseCommand eose)?) getEoseCommandCallBack(
  1. String subscriptionId
)

Returns an eose command callback from the registry with the given subscriptionId.

Implementation

void Function(
  NostrRequestEoseCommand eose,
)? getEoseCommandCallBack(String subscriptionId) {
  return eoseCommandCallBacks[subscriptionId];
}