From 9fa6b09c2711f374f47ab05d017781ba6b5d6dd5 Mon Sep 17 00:00:00 2001 From: Shinya Kumagai Date: Sat, 27 Jan 2024 18:39:12 +0900 Subject: [PATCH] Add `@immutable` annotation to `SystemNavigationBarParams` --- flutter_custom_tabs/lib/src/types/launch_options.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/flutter_custom_tabs/lib/src/types/launch_options.dart b/flutter_custom_tabs/lib/src/types/launch_options.dart index 9071e2d4..6d17e5b0 100644 --- a/flutter_custom_tabs/lib/src/types/launch_options.dart +++ b/flutter_custom_tabs/lib/src/types/launch_options.dart @@ -76,6 +76,7 @@ class LaunchOptions { /// The color configuration of the system navigation bar. @experimental +@immutable class SystemNavigationBarParams { /// The color of the system navigation bar. final Color backgroundColor;