load method
Implementation
Future<void> load() async {
final HostStateStore? store = stateStore;
if (store == null) return;
final String? raw = await store.read();
if (raw == null || raw.isEmpty) return;
applyJson(jsonDecode(raw) as Map<String, dynamic>);
}