moveBackward method
void
moveBackward()
To display previous image till the first image Index
Implementation
void moveBackward() {
if (listIndex.value > 0) {
listIndex--;
}
}
To display previous image till the first image Index
void moveBackward() {
if (listIndex.value > 0) {
listIndex--;
}
}