successToast function

dynamic successToast(
  1. String msg
)

Implementation

successToast(String msg) {
  showToast(
    msg,
    duration: LONG_DURATION,
    backgroundColor: Colors.green,
    textStyle: const TextStyle(color: Colors.white, fontSize: 15),
  );
}