isModalBottomSheetOpen static method

bool isModalBottomSheetOpen()

Implementation

static bool isModalBottomSheetOpen() {
  var currentRoute = ModalRoute.of(currentContext);
  return currentRoute is ModalBottomSheetRoute;
}