popAll static method

void popAll()

Implementation

static void popAll() {
  while (instance._stack.isNotEmpty) {
    pop();
  }
}