copyWith method
Implementation
@override
InternalLinkTypePhoneNumberConfirmation copyWith({
String? hash,
String? phoneNumber,
dynamic extra,
int? clientId,
}) =>
InternalLinkTypePhoneNumberConfirmation(
hash: hash ?? this.hash,
phoneNumber: phoneNumber ?? this.phoneNumber,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);