stop method

void stop()

Pauses the animation.

Implementation

void stop() {
  if (_controller != null) {
    _controller!.stop();
  }
}