topicKey property

String get topicKey

Implementation

String get topicKey {
  if (localKey?.isNotEmpty == true) {
    return localKey!;
  }
  if (topic?.topicId != null) {
    return '${conversationId}_${topic!.topicId}_${topic!.createTime ?? 0}';
  }
  return 'placeholder_$conversationId';
}