show method

Future show(
  1. BuildContext context
)

弹出弹框 popup window show

Implementation

Future show(BuildContext context) async {
  Navigator.push(
    context,
    PopRoute(
      child: this,
    ),
  );
  _isShow = true;
}