clone

inline suspend fun <T : Any> clone(obj: T, replaceProperties: Map<KProperty1<T, *>, Any> = emptyMap()): T

Reads the properties of an instance through reflection, and constructs a new instance of the same type. If this class contains immutable properties that cannot be changed through reflection these cannot be cloned and will be ignored.

Return

The new cloned instance.

Parameters

replaceProperties

A map of properties to replace in the new instance.

T

The type of the instance.