ToolCall constructor

const ToolCall({
  1. required String id,
  2. required String callType,
  3. required FunctionCall function,
})

Implementation

const ToolCall({
  required this.id,
  required this.callType,
  required this.function,
});