init static method

void init({
  1. Color? bgColor,
  2. Color? textColor,
  3. double? fontSize,
})

初始化 Toast bgColor 背景色 textColor Text颜色 fontSize 字体大小

Implementation

static void init({Color? bgColor, Color? textColor, double? fontSize}) {
  toastBgColor = bgColor ?? toastBgColor;
  toastTextColor = textColor ?? toastTextColor;
  toastFontSize = fontSize ?? toastFontSize;
}