Comment.fromJson constructor

Comment.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Comment.fromJson(Map<String, dynamic> json) {
  id = json['id'];
  user = json['user'] != null ? User.fromJson(json['user']) : null;
  commentContent = json['comment_content'];
  dateCreated = json['date_created'];
  thought = json['thought'];
}