setCampaign static method

Future<void> setCampaign(
  1. String campaign
)

Subscriber attribute associated with the install campaign for the user

campaign Empty String or null will delete the subscriber attribute.

Implementation

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