fromRelayMessage static method
Implementation
static NostrRequestEoseCommand fromRelayMessage(String dataFromRelay) {
  assert(canBeDeserialized(dataFromRelay));
  final decoded = jsonDecode(dataFromRelay) as List;
  return NostrRequestEoseCommand(
    subscriptionId: decoded[1] as String,
  );
}