progressWith method

  1. @override
NotLoggedInWatchingSomeone progressWith({
  1. double? uploadingBGProgress,
  2. double? uploadingProfilePhotoProgress,
})
override

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,
  );
}