MutableCreationExtrasBuilder
With Kotlin 1.9.20, an expect with default arguments are no longer permitted when an actual is a typealias (see KT-57614), we cannot use actual typealias MutableCreationExtras = androidx.lifecycle.viewmodel.MutableCreationExtras
. So we have to use wrapper class instead.
Mutable builder for CreationExtras.
Parameters
initialExtras
extras that will be filled into the resulting MutableCreationExtrasBuilder
Functions
Link copied to clipboard
Link copied to clipboard
inline fun CreationExtras.edit(builderAction: MutableCreationExtrasBuilder.() -> Unit): CreationExtras
Edits this CreationExtras by populating a MutableCreationExtrasBuilder using the given builderAction. Content of this CreationExtras will be copied into the resulting MutableCreationExtrasBuilder first. Then the builderAction will be applied to the MutableCreationExtrasBuilder.