restart method

void restart()

Use this function to restart this ImageSequenceAnimator.

Implementation

void restart() {
  if (!_isReadyToPlay) return;

  stop();
  play();
}