CommentDelete.fromJson constructor

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

Implementation

factory CommentDelete.fromJson(Map<String, dynamic> json) {
  return CommentDelete(json['id'], json['commentId']);
}