cancelCallNotification static method

Future<void> cancelCallNotification(
  1. int notificationId
)

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