toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conversation = this.conversation;
  final conversationId = this.conversationId;
  final parent = this.parent;
  final redactionConfig = this.redactionConfig;
  final speechConfig = this.speechConfig;
  return {
    'conversation': ?conversation,
    'conversationId': ?conversationId,
    'parent': ?parent,
    'redactionConfig': ?redactionConfig,
    'speechConfig': ?speechConfig,
  };
}