showErrorSnackBar method
Implementation
void showErrorSnackBar(BuildContext context, String message) {
vm.idle();
messenger(context).hideCurrentSnackBar();
messenger(context).showSnackBar(
SnackBar(
backgroundColor: Theme.of(context).colorScheme.error,
duration: const Duration(seconds: 4),
content: Text(message),
showCloseIcon: true,
),
);
}