flutter_web_socket 1.0.0 flutter_web_socket: ^1.0.0 copied to clipboard
A package to connect the project with web sockets.
Connecting to a WebSocket #
To connect to a WebSocket server, use the connectToWebSocket method provided by the web_socket_utils package. Provide the WebSocket server URL as a parameter to establish the connection.
web_socket_utils #
web_socket_utils
is a Dart package that provides a utility method for establishing WebSocket connections and interacting with WebSocket servers.
Usage #
To use this package, follow these steps:
-
Add the
web_socket_utils
dependency to yourpubspec.yaml
file:dependencies: web_socket_utils: ^1.0.0
-
Import the package in your Dart file:
import 'package:web_socket_utils/web_socket_utils.dart';
-
Establish a WebSocket connection using the connectToWebSocket method. Pass the desired WebSocket server URL as a parameter:
WebSocket webSocket = await connectToWebSocket('ws://echo.websocket.org'); void main() { connectToWebSocket(socketUrl: 'wss://socketsbay.com/wss/v2/1/demo/').then((webSocket) { if (webSocket != null) { // WebSocket connection successful, you can now interact with the server webSocket.listen( (data) { print('Received message: $data'); }, onError: (error) { print('Error occurred: $error'); }, onDone: () { print('WebSocket connection closed'); }, ); webSocket.add('Hello, Server!'); // To close the WebSocket connection, you can use: // webSocket.close(); } else { // WebSocket connection failed print('WebSocket connection failed.'); } }); }