AnswerQuestions.fromJson constructor

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

Implementation

factory AnswerQuestions.fromJson(Map<String, dynamic> json) =>
    AnswerQuestions(
      message: json["message"],
      data: json["data"] == null ? null : Data.fromJson(json["data"]),
      status: json["status"],
      meta: json["meta"],
    );