# skuPurchased

{% tabs %}
{% tab title="Swift" %}

```swift
public static func skuPurchased(_ skuId: StoreId) -> Bool
```

{% endtab %}

{% tab title="Kotlin" %}

```kotlin
fun isSKUIDPurchased(skuID: String): Boolean
```

{% endtab %}

{% tab title="Flutter" %}

```dart
static Future<bool> skuPurchased(String skuID)
```

{% endtab %}

{% tab title="React Native" %}

```Text
// coming soon
```

{% endtab %}

{% tab title="Unity" %}

```c
// coming soon
```

{% endtab %}
{% endtabs %}

**Parameters**

* `skuId` The id of a product SKU from the Control Center.

**Returns**\
True if the the `skuId` has been purchased, false otherwise.
