ChatCompletionDelta constructor

ChatCompletionDelta({
  1. String? role,
  2. String? content,
  3. String? reasoningContent,
  4. List<ChatCompletionChunkToolCall>? toolCalls,
})

Implementation

ChatCompletionDelta({
  this.role,
  this.content,
  this.reasoningContent,
  this.toolCalls,
});