diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 050f9c0c..9d6452b7 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -16,9 +16,6 @@
-
-
-
@@ -36,11 +33,11 @@
-
+
-
-
+
+
@@ -48,7 +45,7 @@
-
+
@@ -145,8 +142,8 @@
-
+
@@ -362,13 +359,13 @@
-
+
-
+
@@ -645,16 +642,6 @@
-
-
-
-
-
-
-
-
-
-
@@ -665,6 +652,16 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/flutter_inappbrowser.dart b/lib/flutter_inappbrowser.dart
index 81a64f00..18ecd41d 100644
--- a/lib/flutter_inappbrowser.dart
+++ b/lib/flutter_inappbrowser.dart
@@ -1120,6 +1120,8 @@ class InAppLocalhostServer {
}
///Manages the cookies used by an application's [InAppWebView] instances.
+///
+///**NOTE for iOS**: available from iOS 11.0+.
class CookieManager {
static bool _initialized = false;
static const MethodChannel _channel = const MethodChannel('com.pichillilorenzo/flutter_inappbrowser_cookiemanager');
@@ -1200,6 +1202,7 @@ class CookieManager {
}
///Removes a cookie by its [name] for the given [url], [domain] and [path].
+ ///
///The default value of [path] is `"/"`.
///If [domain] is `null` or empty, its default value will be the domain name of [url].
static Future deleteCookie(String url, String name, {String domain = "", String path = "/"}) async {
@@ -1221,6 +1224,7 @@ class CookieManager {
}
///Removes all cookies for the given [url], [domain] and [path].
+ ///
///The default value of [path] is `"/"`.
///If [domain] is `null` or empty, its default value will be the domain name of [url].
static Future deleteCookies(String url, {String domain = "", String path = "/"}) async {