bqsp_client 0.3.2 copy "bqsp_client: ^0.3.2" to clipboard
bqsp_client: ^0.3.2 copied to clipboard

Dart client for the BQSP protocol

example/bqsp_client_example.dart

import 'package:bqsp_client/bqsp_client.dart';

const serverHost = '127.0.0.1';
const serverPort = 1234;

void main() async {
  final client = BqspClient(serverHost, serverPort);
  await client.connect();

  final response = await client.send(4, 'Test message');
  print('Received response: ${response?.body}');

  await client.close();
}