hideCurrentContext function

dynamic hideCurrentContext({
  1. BuildContext? context,
})

Implementation

hideCurrentContext({BuildContext? context}) {
  return Navigator.pop(context ?? getCurrentContext());
}