toast static method

void toast(
  1. String msg
)

Implementation

static void toast(String msg) {
  Fluttertoast.showToast(
    msg: msg,
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.CENTER,
    backgroundColor: AppColors.btnColor,
    timeInSecForIosWeb: 1,
    textColor: Colors.white,
    fontSize: 16.0,
    webPosition: "center",
  );


}