popAllPopUps method

void popAllPopUps({
  1. dynamic result,
})

Implementation

void popAllPopUps({dynamic result}) {
  while (openedDialogOrBottomSheetList.isNotEmpty) {
    _popLastDialogOrBottomSheet(result: result);
  }
}