Boa noite.
Tive que fazer algumas alterações no código devido a atualização http_interceptor:
final Response response = await client.get(Uri.http("XXX.XXX.XX.XX:8080", "transactions").timeout(Duration(seconds: 5)));
Ao executar o app, apresenta o seguinte erro no console:
lib/http/webclient.dart:34:71: Error: The method 'timeout' isn't defined for the class 'Uri'.
- 'Uri' is from 'dart:core'.
Try correcting the name to the name of an existing method, or defining a method named 'timeout'.
await client.get(Uri.http("XXX.XXX.XX.XX:8080", "transactions").timeout(Duration(seconds: 5)));
Tentei procurar alguma forma de contornar isso mas não consegui.