toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final includeThoughts = this.includeThoughts;
  final thinkingBudget = this.thinkingBudget;
  final thinkingLevel = this.thinkingLevel;
  return {
    'includeThoughts': ?includeThoughts,
    'thinkingBudget': ?thinkingBudget,
    'thinkingLevel': ?thinkingLevel,
  };
}