setOrderRangeAnimation method

void setOrderRangeAnimation(
  1. int startIndex,
  2. int endIndex
)

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) {}
}