registerAll method

void registerAll(
  1. Iterable<Tool> tools
)

Registers multiple tools at once.

Implementation

void registerAll(Iterable<Tool> tools) {
  for (final t in tools) {
    register(t);
  }
}