setFirebaseAppInstanceId static method

Future<void> setFirebaseAppInstanceId(
  1. String firebaseAppInstanceId
)

Subscriber attribute associated with the Firebase Instance Id for the user Required for the RevenueCat Firebase integration

firebaseAppInstanceId Empty String or null will delete the subscriber attribute.

Implementation

static Future<void> setFirebaseAppInstanceId(String firebaseAppInstanceId) =>
    _channel.invokeMethod(
      'setFirebaseAppInstanceID',
      {'firebaseAppInstanceID': firebaseAppInstanceId},
    );