isBluetoothSupported static method
Implementation
static Future<bool> isBluetoothSupported() async {
try {
return await _platform.isBluetoothSupported();
} catch (e) {
if (kDebugMode) print('Error checking Bluetooth support: $e');
return false;
}
}