ReplyCommentModel constructor
ReplyCommentModel({
- int? id,
- UserModel? user,
- PostCommentModel? postComments,
- DateTime? createdAt,
- String? comment,
Implementation
ReplyCommentModel({
this.id,
this.user,
this.postComments,
this.createdAt,
this.comment,
});