showToast function

dynamic showToast(
  1. String message
)

Implementation

showToast(String message) => FT.Fluttertoast.showToast(
      msg: message,
      toastLength: FT.Toast.LENGTH_SHORT,
      gravity: FT.ToastGravity.CENTER,
    );