TopicData constructor

const TopicData({
  1. required String id,
  2. required String name,
  3. required String description,
})

Implementation

const factory TopicData({
  /// The id of this topic.
  required String id,

  /// The name of this topic.
  required String name,

  /// The description of this topic.
  required String description,
}) = _TopicData;