AuthorizationCredentialAppleID constructor

const AuthorizationCredentialAppleID({
  1. @required String? userIdentifier,
  2. @required String? givenName,
  3. @required String? familyName,
  4. required String authorizationCode,
  5. @required String? email,
  6. @required String? identityToken,
  7. @required String? state,
})

Creates an instance which contains the result of a successful Sign in with Apple flow.

Implementation

const AuthorizationCredentialAppleID({
  @required this.userIdentifier,
  @required this.givenName,
  @required this.familyName,
  required this.authorizationCode,
  @required this.email,
  @required this.identityToken,
  @required this.state,
});