openBluetoothSettings method
Open Bluetooth settings
Implementation
@override
Future<void> openBluetoothSettings() async {
try {
await _methodChannel.invokeMethod('openBluetoothSettings');
} catch (e) {
throw BluetoothException('Failed to open Bluetooth settings: $e');
}
}