getControllers method

List<AnimationController> getControllers(
  1. String label
)

获取指定分组的所有控制器

Implementation

List<AnimationController> getControllers(String label) {
  return _groups[label]?.toList() ?? [];
}