show method

dynamic show(
  1. BuildContext context
)

Implementation

show(BuildContext context) {
  showDialog(
    barrierDismissible: false,
    context: context,
    builder: (context) => this,
  );
}