AiMessage constructor

const AiMessage({
  1. required AiRole role,
  2. String? text,
  3. List<AiToolCall> toolCalls = const [],
  4. AiToolResult? toolResult,
})

Implementation

const AiMessage({
  required this.role,
  this.text,
  this.toolCalls = const [],
  this.toolResult,
});