Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit bb29628

Browse files
authored
[web] Fix trivial type issue. (#40956)
1 parent d726345 commit bb29628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/web_ui/lib/src/engine/view_embedder/hot_restart_cache_handler.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import '../dom.dart';
1515
@JS('window.__flutterState')
1616
external JSArray? get _hotRestartStore;
1717
List<Object?>? get hotRestartStore =>
18-
_hotRestartStore?.toObjectShallow as List<Object>?;
18+
_hotRestartStore?.toObjectShallow as List<Object?>?;
1919

2020
@JS('window.__flutterState')
2121
external set _hotRestartStore(JSArray? nodes);

0 commit comments

Comments
 (0)