showCenter static method

void showCenter(
  1. String msg
)

展示中间

Implementation

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