processTapUp method

void processTapUp()

Implementation

void processTapUp() {
  if (widget.toggle) {
    if (_animationController.status == AnimationStatus.completed) {
      _animationController.reverse();
    }
  } else {
    if (_animationController.status == AnimationStatus.completed) {
      _animationController.reverse();
    } else {
      markReverse();
    }
  }
}