setOrderRangeAnimation method
Implementation
void setOrderRangeAnimation(int startIndex, int endIndex) async {
try {
for (var i = startIndex; i <= endIndex; i++) {
if (i >= 0) {
await betweenControllerList[i].forward();
}
}
} catch (e) {}
}