cancelCallNotification method
Cancels an incoming call notification by call ID.
Implementation
@override
Future<bool> cancelCallNotification(String callId) async {
final result = await methodChannel.invokeMethod<bool>(
'cancelCallNotification',
{'callId': callId},
);
return result ?? false;
}