questionAnswerFromJson function

QuestionAnswer questionAnswerFromJson(
  1. String str
)

Converts a JSON String to a QuestionAnswer object.

Implementation

QuestionAnswer questionAnswerFromJson(String str) =>
    QuestionAnswer.fromJson(json.decode(str));