resume method

void resume()

Implementation

void resume() {
  // Resume the ticker if there are active animations
  if (_animations.isNotEmpty && !_ticker.isActive) {
    _ticker.start();
  }
}