ReplyModel constructor

ReplyModel(
  1. String avatar,
  2. String name,
  3. dynamic titleColor,
  4. String reply,
  5. String time,
  6. bool liked,
  7. int likeCount,
)

Implementation

ReplyModel(
  this.avatar,
  this.name,
  this.titleColor,
  this.reply,
  this.time,
  this.liked,
  this.likeCount,
);