handlePushMessage method

  1. @override
Future<void> handlePushMessage()
override

When a user taps on a push notification Intercom hold onto data such as the URI in your message or the conversation to open.

When you want Intercom to act on that data, use this method.

Implementation

@override
Future<void> handlePushMessage() async {
  await _channel.invokeMethod('handlePushMessage');
}