toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentActionSuggestions = this.agentActionSuggestions;
  final applicableInstructions = this.applicableInstructions;
  final sampleResponses = this.sampleResponses;
  return {
    'agentActionSuggestions': ?agentActionSuggestions,
    'applicableInstructions': ?applicableInstructions,
    'sampleResponses': ?sampleResponses,
  };
}