toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conversationId = this.conversationId;
  final followupConversationRequested = this.followupConversationRequested;
  final userAnswer = this.userAnswer;
  return {
    'conversationId': ?conversationId,
    'followupConversationRequested': ?followupConversationRequested,
    'userAnswer': ?userAnswer,
  };
}