File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ class App extends StatelessWidget {
3333 required AppEnvironment environment,
3434 required AdService adService,
3535 this .demoDataMigrationService,
36+ this .initialUser,
3637 super .key,
3738 }) : _authenticationRepository = authenticationRepository,
3839 _headlinesRepository = headlinesRepository,
@@ -61,6 +62,7 @@ class App extends StatelessWidget {
6162 final AppEnvironment _environment;
6263 final AdService _adService;
6364 final DemoDataMigrationService ? demoDataMigrationService;
65+ final User ? initialUser;
6466
6567 @override
6668 Widget build (BuildContext context) {
@@ -89,6 +91,7 @@ class App extends StatelessWidget {
8991 userRepository: context.read <DataRepository <User >>(),
9092 environment: _environment,
9193 demoDataMigrationService: demoDataMigrationService,
94+ initialUser: initialUser,
9295 ),
9396 ),
9497 BlocProvider (
You can’t perform that action at this time.
0 commit comments