toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final answerValue = this.answerValue;
  final qaQuestionId = this.qaQuestionId;
  final qaScorecardId = this.qaScorecardId;
  final questionBody = this.questionBody;
  return {
    'answerValue': ?answerValue,
    'qaQuestionId': ?qaQuestionId,
    'qaScorecardId': ?qaScorecardId,
    'questionBody': ?questionBody,
  };
}