import '../host/runtime_host_bridge.dart'; import '../network/runtime_network_manager.dart'; import '../storage/runtime_storage_manager.dart'; class RuntimeScriptServices { const RuntimeScriptServices({this.network, this.hostBridge, this.storage}); final RuntimeNetworkManager? network; final RuntimeHostBridgeManager? hostBridge; final RuntimeStorageManager? storage; }