From 4260c7cc653b9c34c01aac2ded28d37dd32f4ff4 Mon Sep 17 00:00:00 2001 From: Artem Luzin m Date: Mon, 24 Nov 2025 17:40:31 +0700 Subject: [PATCH] fix(app): remove unused parameter from _AppInternal constructor --- lib/app/app.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/app/app.dart b/lib/app/app.dart index 4c800aa..d750113 100644 --- a/lib/app/app.dart +++ b/lib/app/app.dart @@ -108,10 +108,9 @@ class _AppInternal extends StatefulWidget { /// {@macro app_internal} const _AppInternal({ required this.diContainer, - @visibleForTesting this.mockRouter, + @visibleForTesting this.mockRouter, // ignore: unused_element_parameter }); - /// Контейнер зависимостей final DiContainer diContainer;