show static method

dynamic show(
  1. String text, {
  2. Color? customBoxColor,
  3. Color? customTextColor,
})

Implementation

static show(
    String text, {
      Color? customBoxColor,
      Color? customTextColor,
    }) {
  _instance._showToast(text,
      customBoxColor: customBoxColor, customTextColor: customTextColor);
}