From e2b091b22c3bd8d73ba2355ec5cd59e48cb06f90 Mon Sep 17 00:00:00 2001 From: pichillilorenzo Date: Sat, 27 Oct 2018 21:11:10 +0200 Subject: [PATCH] updated docs --- .idea/workspace.xml | 37 ++++++++++++++++------------------- lib/flutter_inappbrowser.dart | 4 ++++ 2 files changed, 21 insertions(+), 20 deletions(-) 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 {