onAnimationCompleted property

VoidCallback? get onAnimationCompleted

Gets and sets the animation completed callback.

Implementation

VoidCallback? get onAnimationCompleted => _onAnimationCompleted;
set onAnimationCompleted (VoidCallback? value)

Implementation

set onAnimationCompleted(VoidCallback? value) {
  if (value == _onAnimationCompleted) {
    return;
  }
  _onAnimationCompleted = value;
}