copyWith method
Implementation
UserDetailsPersonal copyWith(
{String? phone, String? im, String? website, String? email}) {
return UserDetailsPersonal(
phone: phone ?? this.phone,
im: im ?? this.im,
website: website ?? this.website,
email: email ?? this.email,
);
}