PeamanReaction constructor

PeamanReaction({
  1. String? id,
  2. String? feedId,
  3. String? ownerId,
  4. PeamanReactionParent parent = PeamanReactionParent.feed,
  5. String? parentId,
  6. String? parentOwnerId,
  7. bool unreacted = false,
  8. int? createdAt,
  9. int? updatedAt,
  10. bool visibility = true,
  11. Map<String, dynamic> extraData = const {},
})

Implementation

PeamanReaction({
  this.id,
  this.feedId,
  this.ownerId,
  this.parent = PeamanReactionParent.feed,
  this.parentId,
  this.parentOwnerId,
  this.unreacted = false,
  this.createdAt,
  this.updatedAt,
  this.visibility = true,
  this.extraData = const {},
});