MapValue

data class MapValue(val fields: Map<String, TypedData>) : TypedData

Represents a map of state values.

Constructors

Link copied to clipboard
constructor(fields: Map<String, TypedData>)

Properties

Link copied to clipboard

The map of child values keyed by field name.

Functions

Link copied to clipboard
fun getInt(key: String): Int?

Gets an integer value for the given key.

Link copied to clipboard
fun getString(key: String): String?

Gets a string value for the given key.