copyWith method
Implementation
PhoneNumberAuthenticationSettings copyWith({
bool? allowFlashCall,
bool? allowMissedCall,
bool? isCurrentPhoneNumber,
bool? allowSmsRetrieverApi,
FirebaseAuthenticationSettings? firebaseAuthenticationSettings,
List<String>? authenticationTokens,
}) =>
PhoneNumberAuthenticationSettings(
allowFlashCall: allowFlashCall ?? this.allowFlashCall,
allowMissedCall: allowMissedCall ?? this.allowMissedCall,
isCurrentPhoneNumber: isCurrentPhoneNumber ?? this.isCurrentPhoneNumber,
allowSmsRetrieverApi: allowSmsRetrieverApi ?? this.allowSmsRetrieverApi,
firebaseAuthenticationSettings: firebaseAuthenticationSettings ??
this.firebaseAuthenticationSettings,
authenticationTokens: authenticationTokens ?? this.authenticationTokens,
);