<div class='sourceset sourceset-android'>Android</div>

```kotlin
public class Pair<T : Any>
    internal constructor(internal val key: Key<T>, internal val value: T)
```

Key Value pairs for Parameters. Type T is the type of the value. Pairs must have unique keys,
or they will be considered equal.

Create this using the infix function `to`.