stopAll static method

void stopAll()

Implementation

static void stopAll() {
  final old = _children.values.toList();
  for (var t in old) {
    t.stop();
  }
}