stopSilentVADDetection method

Future<bool> stopSilentVADDetection()

Stops silent VAD detection for this instance.

Implementation

Future<bool> stopSilentVADDetection() async {
  final result = await _methodChannel.invokeMethod<bool>(
    'stopSilentVADDetection',
    {'instanceId': instanceId},
  );
  return result ?? true;
}