Flutter SocketException (SocketException: OS Error: Connection refused, errno = 111, address = localhost, port = 51500)

Issue I am Using strapi.io open Source Node.js Headless CMS this is my code for registerpage void _registerUser() async { http.Response response = await http.post(‘http://localhost:1337/auth/local/register’, body: { “username”: _userName, “email”: _email, “password”: _password, }); final responseData = json.decode(response.body); if (response.statusCode

Continue reading