AppleAccountConfig constructor

AppleAccountConfig({
  1. required String serviceIdentifier,
  2. required String bundleIdentifier,
  3. required String redirectUri,
  4. required String teamId,
  5. required String keyId,
  6. required String key,
})

Creates a new Sign in with Apple configuration.

Implementation

AppleAccountConfig({
  required this.serviceIdentifier,
  required this.bundleIdentifier,
  required this.redirectUri,
  required this.teamId,
  required this.keyId,
  required this.key,
});