DeleteCommentResponse.fromJson constructor
Implementation
factory DeleteCommentResponse.fromJson(Map<String, dynamic> json) => DeleteCommentResponse(
ok: json["ok"]?.toString() ?? 'true',
activityState: json["activity_state"]?.toString() ?? '',
activityPoints: json["activity_points"],
message: json["message"]?.toString() ?? '',
);