show<T> method
Display the dialog using the standard showDialog function.
Implementation
Future<T?> show<T>(BuildContext context) {
return showDialog<T>(
context: context,
builder: (context) => this,
);
}
Display the dialog using the standard showDialog function.
Future<T?> show<T>(BuildContext context) {
return showDialog<T>(
context: context,
builder: (context) => this,
);
}