show<T> method

Future<T?> show<T>(
  1. BuildContext context
)

Display the dialog using the standard showDialog function.

Implementation

Future<T?> show<T>(BuildContext context) {
  return showDialog<T>(
    context: context,
    builder: (context) => this,
  );
}