transferPlayOwnershipToCurrentUser method
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
@override
Future<void> transferPlayOwnershipToCurrentUser({
required String productId,
}) async {
await methodChannel.invokeMethod('transferPlayOwnershipToCurrentUser', {
'productId': productId,
});
}