customAutoSignupAuthClbk property

FutureOr<AuthCredentialsProvider> Function(AuthSignUpPayload payload, AuthenticationData? authData)? customAutoSignupAuthClbk
finalinherited

Provides a callback to be used when trying to signIn after a successful signup This is useful when no AuthenticationData was returned from the API call or may it's missing data It provides access to the submitted AuthSignUpPayload and the returned AuthenticationData if any. Should return a

Implementation

final FutureOr<AuthCredentialsProvider> Function(
  AuthSignUpPayload payload,
  AuthenticationData? authData,
)? customAutoSignupAuthClbk;