hasBluetoothPermissions method
Check if all required Bluetooth permissions are granted
Implementation
@override
Future<bool> hasBluetoothPermissions() async {
final bool result = await methodChannel.invokeMethod(
'hasBluetoothPermissions',
);
return result;
}