From dac1b9aaaa32ccfa4026f153f8bff3f9ca6f8ce2 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 4 Feb 2026 14:55:38 +0000 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=20Use=20Object.hash=20instead=20of=20?= =?UTF-8?q?Object.hashAll?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: kmartins <10598983+kmartins@users.noreply.github.com> --- lib/src/app_theme_mode.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/app_theme_mode.dart b/lib/src/app_theme_mode.dart index 4ccdb39..282531d 100644 --- a/lib/src/app_theme_mode.dart +++ b/lib/src/app_theme_mode.dart @@ -58,7 +58,7 @@ final class ThemeModeData { } @override - int get hashCode => Object.hashAll([themeMode, setThemeMode]); + int get hashCode => Object.hash(themeMode, setThemeMode); } /// {@template app_theme_mode}