DevbarVariable<T> constructor
DevbarVariable<T> (
- VariablesPlugin service,
- String key, {
- required T defaultValue,
- required String? description,
- T? fromJson()?,
Implementation
DevbarVariable(
this.service,
this.key, {
required this.defaultValue,
required this.description,
this.fromJson,
}) {
_value = ValueStream<T>(_computedValue);
}