updatePushNotificationToken method

Future<void> updatePushNotificationToken(
  1. String token
)

Register a push notification token with the Zendesk SDK.

On Android, this should be the FCM token. On iOS, this should be the APNs device token (as a hex string).

Implementation

Future<void> updatePushNotificationToken(String token) {
  throw UnimplementedError(
      'updatePushNotificationToken() has not been implemented.');
}