advance method Null safety
- double elapsedSeconds
Update any dirty components in this artboard.
Implementation
bool advance(double elapsedSeconds) {
bool didUpdate = false;
for (final controller in _animationControllers) {
if (controller.isActive) {
controller.apply(context, elapsedSeconds);
didUpdate = true;
}
}
return updateComponents() || didUpdate;
}