WebSetting<T>.of constructor
const
WebSetting<T>.of (
- T value
Constructs a setting of the given value
.
The isPresent field for the instance will be true.
Implementation
const WebSetting.of(T value)
: _value = value,
isPresent = true;