topicParts property

List<String> topicParts

Implementation

List<String> get topicParts {
  _topicParts ??= _topic.split("/");
  return _topicParts!;
}