CompletionResult constructor

CompletionResult({
  1. String? result,
  2. List<String>? toolCalls,
})

Implementation

CompletionResult({
  this.result,
  this.toolCalls,
});