stopOngoingCallNotification static method
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");
}
}
}