compositeProvider

Creates a PreviewParameterProvider based on the classes of two existing providers.

You can create your own easily with Kotlin delegation:

class ExampleProvider : PreviewParameterProvider<Pair<Type1, Type2>>
by compositeProvider(Type1ParameterProvider::class, Type2ParameterProvider::class)