addTool method

void addTool(
  1. Tool tool
)

Adds a tool to this session.

Implementation

void addTool(Tool tool) {
  _tools[tool.name] = tool;
}