@@ -82,7 +82,7 @@ class FlutterWebAuth2Options {
8282 customTabsPackageOrder: json['customTabsPackageOrder' ],
8383 );
8484
85- /// **Only has an effect on iOS and MacOS !**
85+ /// **Only has an effect on iOS and macOS !**
8686 /// If this is `true` , an ephemeral web browser session
8787 /// will be used where possible (`prefersEphemeralWebBrowserSession` ).
8888 /// For Android devices, see [intentFlags] .
@@ -111,7 +111,7 @@ class FlutterWebAuth2Options {
111111 /// possible parameter values.
112112 final String ? windowName;
113113
114- /// **Only has an effect on Linux, Web and Windows!**
114+ /// **Only has an effect on Linux, Web, and Windows!**
115115 /// Can be used to specify a timeout in seconds when the authentication shall
116116 /// be deemed unsuccessful. An error will be thrown in order to abort the
117117 /// authentication process.
@@ -143,18 +143,22 @@ class FlutterWebAuth2Options {
143143 /// described in https://github.com/ThexXTURBOXx/flutter_web_auth_2/issues/25
144144 final bool useWebview;
145145
146- /// **Only has an effect on iOS and MacOS !**
146+ /// **Only has an effect on iOS, Linux, macOS, and Windows !**
147147 /// String specifying the **host** of the URL that the page will redirect to
148148 /// upon successful authentication (callback URL).
149149 /// When `callbackUrlScheme` is `https` , this **must** be specified on
150150 /// Apple devices running iOS >= 17.4 or macOS >= 14.4.
151+ /// On Linux and Windows, this is used when `useWebview == true` in order to
152+ /// compare with the host of the callback URL (no matter which scheme!).
151153 final String ? httpsHost;
152154
153- /// **Only has an effect on iOS and MacOS !**
155+ /// **Only has an effect on iOS, Linux, macOS, and Windows !**
154156 /// String specifying the **path** of the URL that the page will redirect to
155157 /// upon successful authentication (callback URL).
156158 /// When `callbackUrlScheme` is `https` , this **must** be specified on
157159 /// Apple devices running iOS >= 17.4 or macOS >= 14.4.
160+ /// On Linux and Windows, this is used when `useWebview == true` in order to
161+ /// compare with the path of the callback URL (no matter which scheme!).
158162 final String ? httpsPath;
159163
160164 /// **Only has an effect on Android!**
0 commit comments