toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final assistQueryParams = this.assistQueryParams;
  final audioInput = this.audioInput;
  final cxParameters = this.cxParameters;
  final eventInput = this.eventInput;
  final queryParams = this.queryParams;
  final replyAudioConfig = this.replyAudioConfig;
  final requestId = this.requestId;
  final suggestionInput = this.suggestionInput;
  final textInput = this.textInput;
  return {
    'assistQueryParams': ?assistQueryParams,
    'audioInput': ?audioInput,
    'cxParameters': ?cxParameters,
    'eventInput': ?eventInput,
    'queryParams': ?queryParams,
    'replyAudioConfig': ?replyAudioConfig,
    'requestId': ?requestId,
    'suggestionInput': ?suggestionInput,
    'textInput': ?textInput,
  };
}