toast method

dynamic toast({
  1. Color color = Colors.white,
})

Implementation

toast({Color color = Colors.white}) => Fluttertoast.showToast(
    msg: this,
    textColor: color,
    toastLength: Toast.LENGTH_SHORT,
    backgroundColor: Colors.black);