fix: restore notifier variable + fix unnecessary_null_comparison
Some checks failed
CI / test (push) Failing after 56s
CI / build-apk (push) Has been skipped

This commit is contained in:
2026-01-30 04:42:27 +00:00
parent 75f8e30707
commit 88bd5bdeef
2 changed files with 7 additions and 6 deletions

View File

@@ -98,7 +98,7 @@ void main() {
test('query parameters include values when set', () {
final params = <String, dynamic>{};
const String? search = 'John';
final String? search = 'John'; // runtime to avoid unnecessary_null_comparison
const String? tag = null;
if (search != null) params['search'] = search;