Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 import 'package:http/http.dart' as http; | |
| 2 | |
| 3 void main() { | |
| 4 http.read("http://httpbin.org/").then(print); | |
|
Anders Johnsen
2013/12/06 11:53:28
This is working due to the toString of a response
shailentuli
2013/12/06 18:16:29
Anders, I'm showing the use of http.read() which r
| |
| 5 } | |
| OLD | NEW |