available property

Iterable<Tool> get available

All currently executable tools.

Implementation

Iterable<Tool> get available =>
    _tools.values.where((r) => r.isExecutable).map((r) => r.tool);