cancelCallNotification static method
Implementation
static Future<void> cancelCallNotification(int notificationId) async {
try {
await _channel.invokeMethod('cancelCallNotification', {"notificationId": notificationId});
} on PlatformException catch (e) {
print("Error invoking cancelCallNotification: ${e.message}");
}
}