showToast static method

void showToast(
  1. BuildContext context,
  2. String text
)

Displays a toast notification

Implementation

static void showToast(BuildContext context, String text) =>
  Fluttertoast.showToast(
    msg: text,
    timeInSecForIosWeb: 1,
    backgroundColor: const Color(0xAA383737),
    textColor: Colors.white,
  );