sendTokenToIntercom method

Future<void> sendTokenToIntercom(
  1. String token
)

The token to send to the Intercom to receive the notifications.

For the Android, this token must be a FCM (Firebase cloud messaging) token. For the iOS, this token must be a APNS token.

Implementation

Future<void> sendTokenToIntercom(String token) {
  return IntercomFlutterPlatform.instance.sendTokenToIntercom(token);
}