showToast function

void showToast(
  1. String message
)

Implementation

void showToast(String message) {
  Fluttertoast.showToast(
      msg: message,
      toastLength: Toast.LENGTH_SHORT,
      gravity: ToastGravity.CENTER,
      timeInSecForIosWeb: 1,
      backgroundColor: Colors.teal,//TODO - need to use Toast with context to link to the primary color
      textColor: Colors.white,
      fontSize: 16.0
  );
}