Optional

data class Optional<out T>(val defaultValue: T) : SectionOptionality<T>

The section is optional. If absent, defaultValue is used instead.

Constructors

Link copied to clipboard
constructor(defaultValue: T)

Properties

Link copied to clipboard

The default value to use if the section is absent.