ToolResultBlock constructor

ToolResultBlock({
  1. required String toolUseId,
  2. dynamic content,
  3. bool isError = false,
})

Implementation

ToolResultBlock({
  required this.toolUseId,
  this.content,
  this.isError = false,
});