QuestionAnswer.fromJson constructor

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

Implementation

QuestionAnswer.fromJson(Map<String, dynamic> json) {
  question = json['Question'];
  answer = json['Answer'];
  expand = json['Expand'];
}