toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final answerSources = this.answerSources;
final answerValue = this.answerValue;
final conversation = this.conversation;
final qaQuestion = this.qaQuestion;
final questionBody = this.questionBody;
final tags = this.tags;
return {
'answerSources': ?answerSources,
'answerValue': ?answerValue,
'conversation': ?conversation,
'qaQuestion': ?qaQuestion,
'questionBody': ?questionBody,
'tags': ?tags,
};
}