toastError function
Implementation
ToastificationItem toastError(String msg) {
return toastification.show(
title: Text(msg),
type: ToastificationType.error,
style: ToastificationStyle.flat,
alignment: Alignment.center,
backgroundColor: Colors.black,
foregroundColor: Colors.white,
autoCloseDuration: const Duration(seconds: 5),
);
}