GoogleSignIn.standard constructor

GoogleSignIn.standard({
  1. List<String> scopes = const <String>[],
  2. String? hostedDomain,
})

Factory for creating default sign in user experience.

Implementation

factory GoogleSignIn.standard({
  List<String> scopes = const <String>[],
  String? hostedDomain,
}) {
  return GoogleSignIn(scopes: scopes, hostedDomain: hostedDomain);
}