setPhoneNumber static method

Future<void> setPhoneNumber(
  1. String phoneNumber
)

Subscriber attribute associated with the phone number for the user

phoneNumber Empty String or null will delete the subscriber attribute.

Implementation

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