showInfoToast static method

void showInfoToast(
  1. BuildContext context,
  2. String text, {
  3. int seconds = 3,
})

Implementation

static void showInfoToast(BuildContext context,  String text, {int seconds = 3}) {
  showToast(context, text, infoColor, Icons.info, seconds);
}