isIntercomPush method

Future<bool> isIntercomPush(
  1. Map<String, dynamic> message
)

To check if the push message is for Intercom or not. This is useful when your app is also configured to receive push messages from third parties.

Implementation

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