showToast function
Implementation
showToast(String content, {ToastGravity gravity=ToastGravity.BOTTOM}) {
Fluttertoast.showToast(
msg: content,
toastLength: Toast.LENGTH_SHORT,
gravity: gravity,
timeInSecForIosWeb: 4,
backgroundColor: const Color(0xff01539D),
textColor: Colors.white,
fontSize: 16.0);
}