Subscriber constructor

Subscriber({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String targetId,
  5. required Target target,
  6. required String userId,
  7. required String userName,
  8. required String topicId,
  9. required String providerType,
})

Implementation

Subscriber({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.targetId,
  required this.target,
  required this.userId,
  required this.userName,
  required this.topicId,
  required this.providerType,
});