stopOngoingCallNotification static method

Future<void> stopOngoingCallNotification()

Implementation

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