isDismissed property

  1. @override
bool get isDismissed
override

A getter that returns true if the animation is dismissed.

Implementation

@override
bool get isDismissed =>
    _controller != null ? _controller!.value == 0.0 : false;