Comment constructor

Comment({
  1. Assignment? assignment,
  2. List<User>? mentionedUsers,
  3. Post? post,
  4. Suggestion? suggestion,
})

Implementation

Comment({this.assignment, this.mentionedUsers, this.post, this.suggestion});