unrestrict method

void unrestrict(
  1. String name
)

Unrestrict a tool.

Implementation

void unrestrict(String name) {
  _tools[name]?.restricted = false;
}