refreshSome static method
Implementation
static void refreshSome(List<Type> controllers) {
for (dynamic value in _controllers.values) {
for (dynamic search in controllers) {
if (value.runtimeType == search) {
value.refresh();
}
}
}
}