Bom dia,
Quando faço o hot Reload ou o Hot Restart eu recebo a seguinte mensagem:
lib/http/webclient.dart:5:39: Error: The argument type 'String' can't be assigned to the parameter type 'Uri'.
-'Uri' is from 'dart:core'. final Response response = await get('http://192.168.0.10:8080/transactions');
Segue meu webclient.dart
import 'package:http/http.dart';
void findAll() async {
final Response response = await get('http://192.168.0.10:8080/transactions');
print(response.body);
}
O trecho 'http://192.168.0.10:8080/transactions' está sublinhado em vermelho demonstrando o erro, quando coloco o cursor em cima aparece o seguinte texto: The argument type 'String' can't be assigned to the parameter type 'Uri'. (Documentation)
Como resolvo esse problema?