7 lines
267 B
Dart
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.');
|
|
}
|