createAlias static method

Future<PurchaserInfo> createAlias(
  1. String newAppUserID
)

This function will alias two appUserIDs together.

Returns a PurchaserInfo object, or throws a PlatformException if there was a problem restoring transactions.

newAppUserID The new appUserID that should be linked to the currently identified appUserID.

Implementation

static Future<rc.PurchaserInfo> createAlias(String newAppUserID) async {
  return rc.Purchases.createAlias(newAppUserID);
}