WebSetting<T>.absent constructor
WebSetting<T>.absent ()
Constructs an absent setting instance.
The isPresent field for the instance will be false.
Accessing value for an absent instance will throw.
Implementation
WebSetting.absent()
: _value = null,
isPresent = false;