refreshSome static method

void refreshSome(
  1. List<Type> controllers
)

Implementation

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