toast function

Future<bool?> toast(
  1. String txt
)

Implementation

Future<bool?> toast(String txt) => Fluttertoast.showToast(
    msg: txt,
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.BOTTOM,
    timeInSecForIosWeb: 1,
    backgroundColor: AppColors.blueColor,
    textColor: AppColors.whiteColor,
    fontSize: 16.0);