showToast2 function

void showToast2(
  1. BuildContext context,
  2. String msg
)

Implementation

void showToast2(BuildContext context, String msg) {
  ScaffoldMessenger.of(context).showSnackBar(SnackBar(content: Text(msg)));
}