stopAll method

void stopAll()

停止所有动画

Implementation

void stopAll() {
  for (final group in _groups.values) {
    for (final controller in group) {
      controller.stop();
    }
  }
}