fromJson static method
Implementation
static RequestAnswerResult fromJson(dynamic json) {
  return RequestAnswerResult(
      message: json["message"],
      statusCode: json["status_code"],
      query: Message.fromJsonRobotQuery(json["data"]["query"]),
      anwser: Message.fromJsonRobotQuery(json["data"]["reply"]));
}