copyWith method
Implementation
AddContact copyWith({
int? userId,
ImportedContact? contact,
bool? sharePhoneNumber,
}) => AddContact(
userId: userId ?? this.userId,
contact: contact ?? this.contact,
sharePhoneNumber: sharePhoneNumber ?? this.sharePhoneNumber,
);