transferPlayOwnershipToCurrentUser method

Future<void> transferPlayOwnershipToCurrentUser({
  1. required String productId,
})

Android peer of transferStoreKitOwnershipToCurrentUser. Takes only productId — the SDK resolves the Play purchase token internally from the matching PendingClaim and verifies ownership server-side.

Implementation

Future<void> transferPlayOwnershipToCurrentUser({
  required String productId,
}) {
  throw UnimplementedError(
    'transferPlayOwnershipToCurrentUser() has not been implemented.',
  );
}