stop method

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

停止动画

Implementation

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