putDeviceToken method

void putDeviceToken(
  1. String deviceToken
)

Sets the device token for push notifications.

Use this to enable push notification tracking and targeting. The device token is typically obtained from platform-specific push notification services (FCM, APNs).

deviceToken - The push notification device token.

Implementation

void putDeviceToken(String deviceToken) {
  throw UnimplementedError(
      'putDeviceToken(String deviceToken) has not been implemented.');
}