Comment constructor

Comment({
  1. DeveloperComment? developerComment,
  2. UserComment? userComment,
})

Implementation

Comment({
  this.developerComment,
  this.userComment,
});