Comment constructor
      
      Comment({ 
    
    
- Assignment? assignment,
- List<User> ? mentionedUsers,
- Post? post,
- Suggestion? suggestion,
Implementation
Comment({
  this.assignment,
  this.mentionedUsers,
  this.post,
  this.suggestion,
});