stop method

void stop({
  1. bool canceled = true,
})

Stop current running animation

Implementation

void stop({bool canceled = true}) {
  _controller.stop(canceled: canceled);
}