setMparticleID static method

Future<void> setMparticleID(
  1. String mparticleID
)

Subscriber attribute associated with the mParticle Id for the user Recommended for the RevenueCat mParticle integration

mparticleID Empty String or null will delete the subscriber attribute.

Implementation

static Future<void> setMparticleID(String mparticleID) async {
 return rc.Purchases.setMparticleID(mparticleID);
}