disable method

void disable(
  1. String name
)

Disable a tool.

Implementation

void disable(String name) {
  _tools[name]?.enabled = false;
}