startMicNotification static method

Future<void> startMicNotification()

Implementation

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