roslib_dart/lib/core/ros_stub.dart
2022-02-21 14:25:30 +08:00

7 lines
267 B
Dart

import 'package:web_socket_channel/web_socket_channel.dart';
//Implemented in `ros_html.dart` and `ros_io.dart`
WebSocketChannel initializeWebSocketChannel(String url) {
throw UnsupportedError('Cannot create a web socket channel without dart:html or dart:io.');
}