'background color of the toast message in a flutter

I am trying to change the background color of the toast message in a flutter, the changes are not reflected. My Flutter version is 2.8.1 in pubspec.yaml the flutter toast is fluttertoast: ^8.0.8

Help me with the solution.

 Fluttertoast.showToast(
                      msg: "This is Center Short Toast",
                      toastLength: Toast.LENGTH_SHORT,
                      gravity: ToastGravity.CENTER,
                      timeInSecForIosWeb: 1,
                      backgroundColor: Colors.red,
                      textColor: Colors.white,
                      fontSize: 16.0
                  );

enter image description here



Solution 1:[1]

Try using like this:

 Fluttertoast.showToast(
                      msg: "This is Center Short Toast",
                      toastLength: Toast.LENGTH_SHORT,
                      gravity: ToastGravity.CENTER,
                      timeInSecForIosWeb: 1,
                      backgroundColor:  "#ff0000",
                      textColor: Colors.white,
                      fontSize: 16.0
                  );

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 William Secchi