isBluetoothSupported static method

Future<bool> isBluetoothSupported()

Implementation

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