disconnect method
Disconnect from current device
Implementation
@override
Future<void> disconnect() async {
try {
await _methodChannel.invokeMethod('disconnect');
} catch (e) {
throw BluetoothException('Failed to disconnect: $e');
}
}