setEchoCancellation method

Future<void> setEchoCancellation(
  1. bool enabled
)

Sets the MediaSettings.echoCancellation value.

Implementation

Future<void> setEchoCancellation(bool enabled) async {
  await _settingsRepo.setEchoCancellation(enabled);
}