toggleCardWithoutAnimation method

void toggleCardWithoutAnimation()

Implementation

void toggleCardWithoutAnimation() {
  controller!.stop();

  widget.onFlip?.call();

  widget.onFlipDone?.call(isFront);

  setState(() {
    isFront = !isFront;
    controller!.value = isFront ? 0.0 : 1.0;
  });
}