toastWarning function

ToastificationItem toastWarning(
  1. String msg
)

Implementation

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