Answer constructor

Answer({
  1. Author? author,
  2. String? createTime,
  3. String? name,
  4. String? text,
  5. String? updateTime,
  6. int? upvoteCount,
})

Implementation

Answer({
  this.author,
  this.createTime,
  this.name,
  this.text,
  this.updateTime,
  this.upvoteCount,
});