NotificationTopic constructor

const NotificationTopic({
  1. String? name,
  2. String? subjectUid,
  3. bool blocked = false,
})

Implementation

const NotificationTopic({
  this.name,
  this.subjectUid,
  this.blocked = false,
});