init static method
初始化 Toast
bgColor 背景色
textColor Text颜色
fontSize 字体大小
Implementation
static void init({Color? bgColor, Color? textColor, double? fontSize}) {
toastBgColor = bgColor ?? toastBgColor;
toastTextColor = textColor ?? toastTextColor;
toastFontSize = fontSize ?? toastFontSize;
}