ErrorAlertSheet constructor

const ErrorAlertSheet({
  1. Key? key,
  2. required String errorDescription,
})

A bottom sheet that displays when an error occurs.

Should only be used on mobile platforms.

Implementation

const ErrorAlertSheet({
  super.key,
  required this.errorDescription,
});