copyWith method

PhoneNumberAuthenticationSettings copyWith({
  1. bool? allowFlashCall,
  2. bool? allowMissedCall,
  3. bool? isCurrentPhoneNumber,
  4. bool? allowSmsRetrieverApi,
  5. List<String>? authenticationTokens,
})

Implementation

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