popRepeated method

void popRepeated(
  1. int popTimes
)

Pops the back stack the number of times you indicate with popTimes

Implementation

void popRepeated(int popTimes) {
  G.Get.close(popTimes);
}