transferPlayOwnershipToCurrentUser method

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

Android peer of transferStoreKitOwnershipToCurrentUser. Takes both productId and originalTransactionId (the Play purchase token) — the SDK needs both to resolve the source purchase via the Play API.

Implementation

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