topicForEvent method

Hash topicForEvent(
  1. String name
)

Implementation

Hash topicForEvent(String name) {
  final e = findEventByName(name);
  if (e == null) {
    throw Exception('Unknown event $name');
  }
  return e.asTopic;
}