flipCard method
Implementation
Future flipCard() async {
if (animationController.isAnimating) return;
isFront = !isFront;
await animationController.forward(from: 0).then((value) => anglePlus = math.pi);
}
Future flipCard() async {
if (animationController.isAnimating) return;
isFront = !isFront;
await animationController.forward(from: 0).then((value) => anglePlus = math.pi);
}