WriteStruct.fromJson constructor
Implementation
factory WriteStruct.fromJson(Map<String, dynamic> json) {
return WriteStruct(
question: json['question'],
answer: json['answer'],
help: WriteHelpStruct.fromJson(json['help']),
meta: Meta.fromJson(json['meta']));
}