toastErrorTop method

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

Implementation

toastErrorTop({Color color = Colors.white}) => Fluttertoast.showToast(
      msg: this,
      textColor: color,
      toastLength: Toast.LENGTH_LONG,
      backgroundColor: Colors.red,
      gravity: ToastGravity.TOP,
    );