hasBluetoothPermissions method

  1. @override
Future<bool> hasBluetoothPermissions()
override

Checks if device has bluetooth permissions Only available on Android Defaults to false

Implementation

@override
Future<bool> hasBluetoothPermissions() {
  return Future.value(false);
}