copyWith method
Implementation
Profile copyWith({
String? name,
String? about,
String? website,
String? location,
String? coverImage,
String? profileImage,
}) =>
Profile(
name: name ?? this.name,
about: about ?? this.about,
website: website ?? this.website,
location: location ?? this.location,
coverImage: coverImage ?? this.coverImage,
profileImage: profileImage ?? this.profileImage,
);