ReplyCommentModel constructor

ReplyCommentModel({
  1. int? id,
  2. UserModel? user,
  3. PostCommentModel? postComments,
  4. DateTime? createdAt,
  5. String? comment,
})

Implementation

ReplyCommentModel({
  this.id,
  this.user,
  this.postComments,
  this.createdAt,
  this.comment,
});