stopMicNotification static method

Future<void> stopMicNotification()

Implementation

static Future<void> stopMicNotification() async {
  print('[Isolate] stopMicNotification() Hash: ${Isolate.current.hashCode}');
  try {
    await _ongoingCallChannel.invokeMethod('stopMicNotification');
  } catch (e) {
    if (kDebugMode) {
      print("Error stopping mic notification: $e");
    }
  }
}