resetGroup method
重置指定分组的所有动画
Implementation
void resetGroup(String label) {
final group = _groups[label];
if (group != null) {
_groupCompletionStatus[label] = false;
for (final controller in group) {
_controllerCompletionStatus[controller] = false;
controller.reset();
}
}
}