topic property

String? topic

Implementation

String? get topic => _topic;
void topic=(String? newTopic)

Implementation

set topic(String? newTopic) {
  if (newTopic == null || newTopic.isEmpty) {
    _topic = null;
  } else {
    _topic = newTopic;
  }
}