comment_post.dart 332 B

1234567891011121314151617
  1. class CommentPost {
  2. String commentId;
  3. CommentPost({this.commentId});
  4. CommentPost.fromJson(Map<String, dynamic> json) {
  5. commentId = json['commentId'];
  6. }
  7. Map<String, dynamic> toJson() {
  8. final Map<String, dynamic> data = new Map<String, dynamic>();
  9. data['commentId'] = this.commentId;
  10. return data;
  11. }
  12. }