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