The argument type 'String' can't be assigned to the parameter type Url
1802 ワード
flutterのPackageのhttpのバージョン0.13.4を導入したところ下記のエラーが出てしまいました。
エラー内容
The argument type 'String' can't be assigned to the parameter type 'Uri'.
Stringの引数をURLに割り当てられませんというエラーですね。
誤
final response = await http.get("https://randomuser.me/api/?results=20");
単純にUri型に変換してあげるだけでOKです。
正
final response = await http.get(Uri.parse('https://randomuser.me/api/?results=20'));
Author And Source
この問題について(The argument type 'String' can't be assigned to the parameter type Url), 我々は、より多くの情報をここで見つけました https://zenn.dev/kokopi/articles/61e0d52c60b2f6著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol