toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final booleanResponse = this.booleanResponse;
final documentResponse = this.documentResponse;
final groupResponse = this.groupResponse;
final keyedGroupResponse = this.keyedGroupResponse;
final multipleChoiceResponse = this.multipleChoiceResponse;
final questionId = this.questionId;
final singleChoiceResponse = this.singleChoiceResponse;
final stringResponse = this.stringResponse;
return {
'booleanResponse': ?booleanResponse,
'documentResponse': ?documentResponse,
'groupResponse': ?groupResponse,
'keyedGroupResponse': ?keyedGroupResponse,
'multipleChoiceResponse': ?multipleChoiceResponse,
'questionId': ?questionId,
'singleChoiceResponse': ?singleChoiceResponse,
'stringResponse': ?stringResponse,
};
}