Skip to content

Commit

Permalink
Update upload_state.dart
Browse files Browse the repository at this point in the history
fix lint
  • Loading branch information
thiagocarvalhodev committed Nov 18, 2024
1 parent 09e816d commit 6f763c6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/blocs/upload/upload_state.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ class UploadReady extends UploadState {
List<ANTRecord>? arnsRecords,
bool? showReviewButtonText,
List<ManifestSelection>? selectedManifestSelections,
bool? isCustomManifest,
bool? isUploadingCustomManifest,
bool? shouldShowCustomManifestCheckbox,
bool? uploadFileAsCustomManifest,
}) {
return UploadReady(
loadingArNSNames: loadingArNSNames ?? this.loadingArNSNames,
Expand All @@ -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,
);
}

Expand Down

0 comments on commit 6f763c6

Please sign in to comment.