Function

TwoWayConverter

Factory method to create a TwoWayConverter that converts a type T from and to an AnimationVector type.

RevenueCat

RevenueCat

Add subscriptions to your apps in minutes

Ad Get started for free

TwoWayConverter

Common
public fun <T, V : AnimationVector> TwoWayConverter(
    convertToVector: (T) -> V,
    convertFromVector: (V) -> T,
): TwoWayConverter<T, V>

Factory method to create a TwoWayConverter that converts a type T from and to an AnimationVector type.

Parameters

convertToVector converts from type T to AnimationVector
convertFromVector converts from AnimationVector to type T