show static method

void show(
  1. String msg
)

显示底部的Toast msg 显示的内容

Implementation

static void show(String msg) {
  Fluttertoast.showToast(
    msg: msg,
    toastLength: Toast.LENGTH_SHORT,
    gravity: ToastGravity.BOTTOM,
    backgroundColor: toastBgColor,
    textColor: toastTextColor,
    fontSize: 16.0,
  );
}