addModuleConnection method
Connects this entry to a module. Returns true if the connection was successful, false if the connection already existed.
Implementation
@override
bool addModuleConnection(InspectEntryModuleConnection connection) {
if (hasModuleConnection(connection)) {
return false;
}
_moduleConnections.add(connection);
return true;
}