currentDeviceIsBluetooth method
Implementation
bool currentDeviceIsBluetooth() {
final currentInput = CallManager().getCurrentAudioInput();
if (currentInput != null) {
if (AudioManager().checkDeviceIsBluetooth(device: currentInput)) {
return true;
}
}
return false;
}