animate method

void animate()

Resets the logoFrame and starts the blinking animation.

Implementation

void animate() {
  logoFrame.value = 1;
  _animationTimer?.cancel();
  _animationTimer = Timer.periodic(const Duration(milliseconds: 45), (t) {
    ++logoFrame.value;
    if (logoFrame >= 9) t.cancel();
  });
}