我想使用HttpRequest.getString()方法从“ https://google.com”中获取String。我为此使用了异步方式。
import 'dart:html';
import 'dart:async';
void main() async{
try{
print(await HttpRequest.getString("https://google.com"));
}catch(e){
print(e);
}
}
但是我收到一条错误消息“ ProgressEvent的实例”。我知道什么是“未来实例”,但这是什么?