[web] Fix trivial type issue. (flutter/engine#40956)

This commit is contained in:
joshualitt 2023-04-19 12:58:30 -07:00 committed by GitHub
parent c43fb87612
commit 90138c2003

View File

@ -15,7 +15,7 @@ import '../dom.dart';
@JS('window.__flutterState')
external JSArray? get _hotRestartStore;
List<Object?>? get hotRestartStore =>
_hotRestartStore?.toObjectShallow as List<Object>?;
_hotRestartStore?.toObjectShallow as List<Object?>?;
@JS('window.__flutterState')
external set _hotRestartStore(JSArray? nodes);