toast function

dynamic toast(
  1. String msg
)

Implementation

toast(String msg) {
  showToast(
    msg,
    duration: LONG_DURATION,
  );
}