ToolAnnotations constructor
const
ToolAnnotations({})
Creates tool annotations.
title - Human-readable display title.
readOnlyHint - Tool does not modify its environment.
destructiveHint - Tool may perform destructive updates.
idempotentHint - Repeated calls with same args have no additional effect.
openWorldHint - Tool interacts with external entities.
Implementation
const ToolAnnotations({
this.title,
this.readOnlyHint,
this.destructiveHint,
this.idempotentHint,
this.openWorldHint,
});