modulesDependent property

List<ModuleConfig> get modulesDependent

All the modules excluding my self

Implementation

List<ModuleConfig> get modulesDependent =>
    _modules.where((module) => module.name != name).toList();