progressWith method

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

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