requestScopes method

Future<bool> requestScopes(
  1. List<String> scopes
)

Requests the user grants additional Oauth scopes.

Implementation

Future<bool> requestScopes(List<String> scopes) async {
  await _ensureInitialized();
  return GoogleSignInPlatform.instance.requestScopes(scopes);
}