copyWith method
      
SetAuthenticationPhoneNumber
copyWith({ 
    
    
- String? phoneNumber,
- PhoneNumberAuthenticationSettings? settings,
Implementation
SetAuthenticationPhoneNumber copyWith({
  String? phoneNumber,
  PhoneNumberAuthenticationSettings? settings,
}) => SetAuthenticationPhoneNumber(
  phoneNumber: phoneNumber ?? this.phoneNumber,
  settings: settings ?? this.settings,
);