stop method

Future<void> stop()

Stop servers

Implementation

Future<void> stop() async {
  for (final sup in supervisors) {
    sup.stop();
  }
}