Topics constructor

Topics({
  1. String? topicName,
  2. String? topicId,
  3. dynamic metaData,
})

Initializes a new instance of the Topics class.

Implementation

Topics({
  this.topicName,
  this.topicId,
  this.metaData,
});