From 6f763c67bf5e00cf1e48d3d88b3cee411cd20433 Mon Sep 17 00:00:00 2001 From: Thiago Carvalho <32248947+thiagocarvalhodev@users.noreply.github.com> Date: Mon, 18 Nov 2024 16:44:40 -0300 Subject: [PATCH] Update upload_state.dart fix lint --- lib/blocs/upload/upload_state.dart | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/blocs/upload/upload_state.dart b/lib/blocs/upload/upload_state.dart index 2f24e32df..abd64dde4 100644 --- a/lib/blocs/upload/upload_state.dart +++ b/lib/blocs/upload/upload_state.dart @@ -164,8 +164,8 @@ class UploadReady extends UploadState { List? arnsRecords, bool? showReviewButtonText, List? selectedManifestSelections, - bool? isCustomManifest, - bool? isUploadingCustomManifest, + bool? shouldShowCustomManifestCheckbox, + bool? uploadFileAsCustomManifest, }) { return UploadReady( loadingArNSNames: loadingArNSNames ?? this.loadingArNSNames, @@ -190,10 +190,10 @@ class UploadReady extends UploadState { showReviewButtonText: showReviewButtonText ?? this.showReviewButtonText, selectedManifestSelections: selectedManifestSelections ?? this.selectedManifestSelections, - shouldShowCustomManifestCheckbox: - isCustomManifest ?? this.shouldShowCustomManifestCheckbox, + shouldShowCustomManifestCheckbox: shouldShowCustomManifestCheckbox ?? + this.shouldShowCustomManifestCheckbox, uploadFileAsCustomManifest: - isUploadingCustomManifest ?? this.uploadFileAsCustomManifest, + uploadFileAsCustomManifest ?? this.uploadFileAsCustomManifest, ); }