toastSuccess function

ToastificationItem toastSuccess(
  1. String msg
)

Implementation

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