showErrorDialog function Null safety
- BuildContext context,
- String message,
- Object? exception
Implementation
Future<void> showErrorDialog(
BuildContext context, String message, Object? exception) =>
showDialog(
context: context,
builder: (BuildContext context) => ErrorDialog(message, exception));