AppleSignInConfig constructor

AppleSignInConfig({
  1. required String clientId,
  2. required String redirectUrl,
  3. String hostUrl = "",
  4. List<String> scope = const ["name", "email"],
})

Parameters required for web-based authentication flows

Implementation

AppleSignInConfig({
  ///the Identifier value shown on the detail view of the service after opening
  ///it from social sign in console or developer
  required this.clientId,
  required this.redirectUrl,
  this.hostUrl = "",
  this.scope = const ["name", "email"],
});