From f11803fd1f5db7eb7e3cd3f5608ca00527fe4262 Mon Sep 17 00:00:00 2001 From: Neeraj Gupta <254676+ua741@users.noreply.github.com> Date: Wed, 5 Feb 2025 16:58:09 +0530 Subject: [PATCH] [mob] Lint fix --- mobile/lib/utils/file_uploader.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/mobile/lib/utils/file_uploader.dart b/mobile/lib/utils/file_uploader.dart index 75b7cb08b8..ad2f7a1062 100644 --- a/mobile/lib/utils/file_uploader.dart +++ b/mobile/lib/utils/file_uploader.dart @@ -82,7 +82,6 @@ class FileUploader { int _uploadCounter = 0; int _videoUploadCounter = 0; late ProcessType _processType; - late bool _isBackground; late SharedPreferences _prefs; // _hasInitiatedForceUpload is used to track if user attempted force upload @@ -104,7 +103,6 @@ class FileUploader { Future init(SharedPreferences preferences, bool isBackground) async { _prefs = preferences; - _isBackground = isBackground; _processType = isBackground ? ProcessType.background : ProcessType.foreground; final currentTime = DateTime.now().microsecondsSinceEpoch;