dispose method Null safety

void dispose()

Call dispose funktion of all FactController.

Implementation

void dispose() {
  for (FactController c in controllers) {
    c.dispose();
  }
}