Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ class MethodChannelGoogleSignIn extends GoogleSignInPlatform {

@override
Future<List<String>> listMissingScopes(List<String> scopes) {
return channel.invokeMethod<List<String>>(
return channel.invokeMethod<List<dynamic>>(
'listMissingScopes',
<String, List<String>>{'scopes': scopes},
);
).then((result) => List<String>.from(result));
}

@override
Expand Down