sync method
Implementation
void sync(double timelineProgress) {
final value = config.phaseFor(timelineProgress);
if (_phase == value) {
return;
}
_phase = value;
notifyListeners();
}
void sync(double timelineProgress) {
final value = config.phaseFor(timelineProgress);
if (_phase == value) {
return;
}
_phase = value;
notifyListeners();
}