addList method
Add a list of 'Controllers' to be associated with this StatMVC object.
Implementation
@override
void addList(List<ControllerMVC>? list) {
if (list == null) {
return;
}
/// It may have been a listener. Can't be both.
// list.forEach((ControllerMVC con) => removeListener(con));
return super.addList(list);
}