RunToolCall constructor

const RunToolCall({
  1. required String id,
  2. required String type,
  3. required RunFunctionCall function,
})

Creates a RunToolCall.

Implementation

const RunToolCall({
  required this.id,
  required this.type,
  required this.function,
});