audioOutput method
Return true if the audioOutput have been succesfully changed
Implementation
@override
Future<bool> audioOutput(String deviceId) async {
  try {
    await Helper.selectAudioOutput(deviceId);
  } catch (e) {
    print('Helper.selectAudioOutput ${e.toString()}');
    return false;
  }
  return true;
}