TopicData constructor

TopicData({
  1. required String name,
  2. required String code,
  3. bool isSubscribed = false,
})

Implementation

TopicData({required this.name, required this.code, this.isSubscribed = false});