handlePush method

Future<void> handlePush(
  1. Map<String, dynamic> message
)

If the push message is for Intercom then use this method to let Intercom handle that push.

Implementation

Future<void> handlePush(Map<String, dynamic> message) async {
  return IntercomFlutterPlatform.instance.handlePush(message);
}