@@ -126,12 +126,12 @@ abstract class CurrentUser {
126
126
abstract class SigninOptions {
127
127
external factory SigninOptions (
128
128
{String app_package_name,
129
- bool fetch_basic_profile,
130
- String prompt,
131
- String scope,
132
- String /*'popup'|'redirect'*/ ux_mode,
133
- String redirect_uri,
134
- String login_hint});
129
+ bool fetch_basic_profile,
130
+ String prompt,
131
+ String scope,
132
+ String /*'popup'|'redirect'*/ ux_mode,
133
+ String redirect_uri,
134
+ String login_hint});
135
135
136
136
/// The package name of the Android app to install over the air.
137
137
/// See Android app installs from your web site:
@@ -183,8 +183,8 @@ abstract class SigninOptions {
183
183
abstract class OfflineAccessOptions {
184
184
external factory OfflineAccessOptions (
185
185
{String scope,
186
- String /*'select_account'|'consent'*/ prompt,
187
- String app_package_name});
186
+ String /*'select_account'|'consent'*/ prompt,
187
+ String app_package_name});
188
188
external String ? get scope;
189
189
external set scope (String ? v);
190
190
external String ? /*'select_account'|'consent'*/ get prompt;
@@ -278,7 +278,6 @@ abstract class BasicProfile {
278
278
@anonymous
279
279
@JS ()
280
280
abstract class AuthResponse {
281
-
282
281
external String ? get access_token;
283
282
external set access_token (String ? v);
284
283
external String ? get id_token;
@@ -301,15 +300,15 @@ abstract class AuthResponse {
301
300
abstract class AuthorizeConfig {
302
301
external factory AuthorizeConfig (
303
302
{String client_id,
304
- String scope,
305
- String response_type,
306
- String prompt,
307
- String cookie_policy,
308
- String hosted_domain,
309
- String login_hint,
310
- String app_package_name,
311
- String openid_realm,
312
- bool include_granted_scopes});
303
+ String scope,
304
+ String response_type,
305
+ String prompt,
306
+ String cookie_policy,
307
+ String hosted_domain,
308
+ String login_hint,
309
+ String app_package_name,
310
+ String openid_realm,
311
+ bool include_granted_scopes});
313
312
external String get client_id;
314
313
external set client_id (String v);
315
314
external String get scope;
@@ -338,14 +337,14 @@ abstract class AuthorizeConfig {
338
337
abstract class AuthorizeResponse {
339
338
external factory AuthorizeResponse (
340
339
{String access_token,
341
- String id_token,
342
- String code,
343
- String scope,
344
- num expires_in,
345
- num first_issued_at,
346
- num expires_at,
347
- String error,
348
- String error_subtype});
340
+ String id_token,
341
+ String code,
342
+ String scope,
343
+ num expires_in,
344
+ num first_issued_at,
345
+ num expires_at,
346
+ String error,
347
+ String error_subtype});
349
348
external String get access_token;
350
349
external set access_token (String v);
351
350
external String get id_token;
0 commit comments