List Property Type
data class ListPropertyType(val storageType: RealmStorageType, val isNullable: Boolean = false, val isComputed: Boolean) : RealmPropertyType
A RealmPropertyType describing list properties like RealmList or RealmResults.
Properties
Link copied to clipboard
Whether or not this property is computed. Computed properties are not found inside the Realm file itself, but are calculated based on its state.
Link copied to clipboard
Whether or not the elements inside the list can be null.
Link copied to clipboard
The type of elements inside the list.