AppleProvider constructor

AppleProvider({
  1. Set<String> scopes = const <String>{'email'},
})

Implementation

AppleProvider({
  /// {@macro ui.auth.oauth.apple_provider.scopes}
  this.scopes = const <String>{'email'},
}) {
  scopes.forEach(firebaseAuthProvider.addScope);
}