mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
[web] Fix trivial type issue. (flutter/engine#40956)
This commit is contained in:
parent
c43fb87612
commit
90138c2003
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user