toastSuccess function
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),
);
}