setEchoCancellation method

  1. @override
Future<void> setEchoCancellation(
  1. bool enabled
)
override

Sets the MediaSettings.echoCancellation value.

Implementation

@override
Future<void> setEchoCancellation(bool enabled) async {
  Log.debug('setEchoCancellation($enabled)', '$runtimeType');
  await _set(media: (e) => e..echoCancellation = enabled);
}