setAd static method

Future<void> setAd(
  1. String ad
)

Subscriber attribute associated with the install ad for the user

ad Empty String or null will delete the subscriber attribute.

Implementation

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