progressWith method
Implementation
@override
NotLoggedInWatchingSomeone progressWith(
{double? uploadingBGProgress, double? uploadingProfilePhotoProgress}) {
return NotLoggedInWatchingSomeone(
feedId: feedId,
app: app,
feedProfileModel: feedProfileModel,
feedPublicInfoModel: feedPublicInfoModel,
uploadingBGProgress: uploadingBGProgress ?? this.uploadingBGProgress,
uploadingProfilePhotoProgress:
uploadingProfilePhotoProgress ?? this.uploadingProfilePhotoProgress,
);
}