hide method

dynamic hide(
  1. BuildContext context
)

Implementation

hide(BuildContext context) {
  //G.pop();
  if (isShow) {
    isShow = false;
    Navigator.of(context).pop("hide");
  }

}