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