copyWith method
Implementation
NiceSocialUserState copyWith({bool? liked, bool? shared, bool? bookmarked}) {
return NiceSocialUserState(
liked: liked ?? this.liked,
shared: shared ?? this.shared,
bookmarked: bookmarked ?? this.bookmarked,
);
}