ListProperty

data class ListProperty<T : Parcelable>(val value: List<T>?) : VehicleProperties.VehicleProperty<List<T>>

Property holding an optional List value.

Parameters

T

The type of the items in the List.

value

The value of the property. Can be null if it is temporarily unavailable or invalid.

Constructors

Link copied to clipboard
fun <T : Parcelable> ListProperty(value: List<T>?)

Properties

Link copied to clipboard
open override val value: List<T>?

Inherited functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)