Backback arrow icon

SocketException: OS Error: Connection refused, errno = 111, address = localhost, port = 53452

flutterでローカルのAPIにつなげようとしたところタイトルのエラーが発生しました。

解決方法はこちら

//ダメ
final url = 'http://localhost:3001/api/auth';

// OK
final url = 'http://localhost:3001/api/auth';

参考記事

SocketException: OS Error: Connection refused, errno = 111 in flutter using django backend