onBackgroundMissedCallActionClicked method

void onBackgroundMissedCallActionClicked(
  1. BackgroundMissedCallActionClickedHandler handler
)

Registers a callback to handle the notification action clicked over missed call notification when the app is in the killed state.

This provided handler must be a top-level function and cannot be anonymous otherwise an ArgumentError will be thrown.

Implementation

void onBackgroundMissedCallActionClicked(BackgroundMissedCallActionClickedHandler handler) {
  CleverTapSignedCallFlutterPlatform.instance.onBackgroundMissedCallActionClicked(handler);
}