value property
T?
get
value
Implementation
T? get value => _value;
set
value
(T? value)
Implementation
set value(T? value) {
if (_locked) {
throw StateError('The value of constant "$name" cannot be overwritten.');
}
_value = value;
}