showToast static method
Displays a toast notification
Implementation
static void showToast(BuildContext context, String text) {
Fluttertoast.showToast(
msg: text,
timeInSecForIosWeb: 1,
backgroundColor: Color(0xAA383737),
textColor: Colors.white,
);
}