hasBluetoothPermissions method

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

Check if all required Bluetooth permissions are granted

Implementation

@override
Future<bool> hasBluetoothPermissions() async {
  final bool result = await methodChannel.invokeMethod(
    'hasBluetoothPermissions',
  );
  return result;
}