progressWith method
Implementation
@override
LoggedInWatchingMyProfile progressWith(
{double? uploadingBGProgress, double? uploadingProfilePhotoProgress}) {
return LoggedInWatchingMyProfile(
feedId: feedId,
app: app,
currentMemberProfileModel: currentMemberProfileModel,
currentMember: currentMember,
postAccessibleByGroup: postAccessibleByGroup,
postAccessibleByMembers: postAccessibleByMembers,
onlyMyPosts: onlyMyPosts,
uploadingBGProgress: uploadingBGProgress ?? this.uploadingBGProgress,
uploadingProfilePhotoProgress:
uploadingProfilePhotoProgress ?? this.uploadingProfilePhotoProgress,
);
}