removeAll static method

void removeAll()

Implementation

static void removeAll() {
  for (var e in _snackBars) {
    e.remove(false);
  }
  _snackBars.removeWhere((element) => true);
}