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.

expect class MutableCreationExtrasBuilder(initialExtras: CreationExtras = EmptyCreationExtras)

Mutable builder for CreationExtras.

Parameters

initialExtras

extras that will be filled into the resulting MutableCreationExtrasBuilder

Constructors

Link copied to clipboard
expect constructor(initialExtras: CreationExtras = EmptyCreationExtras)
actual constructor(initialExtras: CreationExtras)

Functions

Link copied to clipboard

Returns a CreationExtras with the same content as this builder.

Link copied to clipboard

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.

Link copied to clipboard
expect operator fun <T> get(key: Key<T>): T?

Returns an element associated with the given key

actual open operator override fun <T> get(key: Key<T>): T?
Link copied to clipboard
expect operator fun <T> set(key: Key<T>, t: T)

Associates the given key with t

actual operator fun <T> set(key: Key<T>, t: T)

Associates the given key with t