PhoneNumberAuthenticationSettings constructor

const PhoneNumberAuthenticationSettings({
  1. required bool allowFlashCall,
  2. required bool allowMissedCall,
  3. required bool isCurrentPhoneNumber,
  4. required bool allowSmsRetrieverApi,
  5. FirebaseAuthenticationSettings? firebaseAuthenticationSettings,
  6. required List<String> authenticationTokens,
})

Contains settings for the authentication of the user's phone number

Implementation

const PhoneNumberAuthenticationSettings({
  required this.allowFlashCall,
  required this.allowMissedCall,
  required this.isCurrentPhoneNumber,
  required this.allowSmsRetrieverApi,
  this.firebaseAuthenticationSettings,
  required this.authenticationTokens,
});