stopAllEndpoints method

Future<void> stopAllEndpoints()

Stop All Endpoints

Disconnects all connections, this will call the onDisconnected method on callbacks of all connected endPoints

Implementation

Future<void> stopAllEndpoints() async {
  await _channel.invokeMethod('stopAllEndpoints');
}