roslib_dart/lib/core/ros_html.dart

7 lines
213 B
Dart
Raw Permalink Normal View History

2022-02-21 14:25:30 +08:00
import 'package:web_socket_channel/web_socket_channel.dart';
import 'package:web_socket_channel/html.dart';
WebSocketChannel initializeWebSocketChannel(String url) {
return HtmlWebSocketChannel.connect(url);
}