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