genChannelId function

dynamic genChannelId(
  1. String topic
)

Implementation

genChannelId(String topic) {
  var t = unleadingHashIt(topic);
  return 'dchat' + hexEncode(Uint8List.fromList(sha1(t)));
}