toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final conversationPlan = this.conversationPlan;
  final startingPrompt = this.startingPrompt;
  final testCaseTitle = this.testCaseTitle;
  return {
    'conversationPlan': ?conversationPlan,
    'startingPrompt': ?startingPrompt,
    'testCaseTitle': ?testCaseTitle,
  };
}