Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[force-code-for-refresh-token-platform-interface] Fix dart format errors
  • Loading branch information
fbcouch committed May 11, 2022
commit efd18a58f02923117d9b2ccdeea008cd1f986e8b
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,11 @@ class MethodChannelGoogleSignIn extends GoogleSignInPlatform {
String? hostedDomain,
String? clientId,
}) {
return initWithParams(
SignInInitParameters(
return initWithParams(SignInInitParameters(
scopes: scopes,
signInOption: signInOption,
hostedDomain: hostedDomain,
clientId: clientId
)
);
clientId: clientId));
}

@override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ void main() {
});

test('initWithParams passes through arguments to the channel', () async {
await googleSignIn.initWithParams(
SignInInitParameters(
await googleSignIn.initWithParams(SignInInitParameters(
hostedDomain: 'example.com',
scopes: <String>['two', 'scopes'],
signInOption: SignInOption.games,
Expand Down