forward method
Play the entrance animation once from the beginning.
Implementation
Future<void> forward() {
if (_disposed || preset.type == ChartAnimationType.none) {
return Future.value();
}
_ctrl.value = 0;
return _ctrl.forward();
}
Play the entrance animation once from the beginning.
Future<void> forward() {
if (_disposed || preset.type == ChartAnimationType.none) {
return Future.value();
}
_ctrl.value = 0;
return _ctrl.forward();
}