ToolResultBlock constructor

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

Implementation

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