cancelAll static method

void cancelAll()

取消toast 显示

Implementation

static void cancelAll() async {
  for (var element in _overlayEntryMangers) {
    element.cancel();
  }
}