cycleCardsRight method
void
cycleCardsRight()
Implementation
void cycleCardsRight() {
currentCardIndex.value = (currentCardIndex.value + 1) % cardOrder.length;
animateBack();
}
void cycleCardsRight() {
currentCardIndex.value = (currentCardIndex.value + 1) % cardOrder.length;
animateBack();
}