Remove example use of missing Response.bodyFields (#597)

Closes #173

I don't think it is common for a server to respond with `form-data`
formatted data. Instead use a more realistic example of the server
responding with JSON.
diff --git a/README.md b/README.md
index 1421e9a..fa4f199 100644
--- a/README.md
+++ b/README.md
@@ -30,9 +30,12 @@
 ```dart
 var client = http.Client();
 try {
-  var uriResponse = await client.post(Uri.parse('https://example.com/whatsit/create'),
+  var response = await client.post(
+      Uri.https('example.com', 'whatsit/create'),
       body: {'name': 'doodle', 'color': 'blue'});
-  print(await client.get(uriResponse.bodyFields['uri']));
+  var decodedResponse = jsonDecode(utf8.decode(response.bodyBytes)) as Map;
+  var uri = Uri.parse(decodedResponse['uri'] as String);
+  print(await client.get(uri));
 } finally {
   client.close();
 }