clearAllPages static method
void
clearAllPages(
- dynamic context
Implementation
static void clearAllPages(context) {
while (Navigator.of(context).canPop()) Navigator.of(context).pop(false);
//Navigator.of(context).pop(false);
}