communication_manager 1.0.1 copy "communication_manager: ^1.0.1" to clipboard
communication_manager: ^1.0.1 copied to clipboard

A Flutter library to manage communication.

Communication Manager #

A Flutter package that allows communication using both BLE and Bluetooth Classic .

Features #

  • Scan BLE Devices
  • Scan Classic Bluetooth Devices

Getting Started #

final bleManager = ConnectionManager(connectionType: ConnectionType.ble);
final classicManager = ConnectionManager(connectionType: ConnectionType.classic);

bleManager.scanDevices();
classicManager.scanDevices();