Comment constructor

Comment(
  1. int id,
  2. String comment,
  3. String date,
  4. User user,
  5. bool hasReplies,
  6. Stamp? stamp,
)

Implementation

Comment(this.id, this.comment, this.date, this.user, this.hasReplies, this.stamp);