flipCard method
void
flipCard()
Implementation
void flipCard() {
if (isFront) {
_controller.forward();
} else {
_controller.reverse();
}
isFront = !isFront;
}
void flipCard() {
if (isFront) {
_controller.forward();
} else {
_controller.reverse();
}
isFront = !isFront;
}