Separate the `post` description for "String" (#695)

diff --git a/lib/src/client.dart b/lib/src/client.dart
index 12695e7..2223c87 100644
--- a/lib/src/client.dart
+++ b/lib/src/client.dart
@@ -45,9 +45,11 @@
   /// URL.
   ///
   /// [body] sets the body of the request. It can be a [String], a [List<int>]
-  /// or a [Map<String, String>]. If it's a String, it's encoded using
-  /// [encoding] and used as the body of the request. The content-type of the
-  /// request will default to "text/plain".
+  /// or a [Map<String, String>].
+  ///
+  /// If [body] is a String, it's encoded using [encoding] and used as the body
+  /// of the request. The content-type of the request will default to
+  /// "text/plain".
   ///
   /// If [body] is a List, it's used as a list of bytes for the body of the
   /// request.