showToast method
Implementation
void showToast(String message, BuildContext? context, Color color) {
Fluttertoast.showToast(
msg: message,
backgroundColor: color,
textColor: AppColors.appColorBlack85,
gravity: ToastGravity.TOP,
timeInSecForIosWeb: 5,
toastLength: Toast.LENGTH_SHORT);
}