DVCVariable<T> constructor

DVCVariable<T>({
  1. String? id,
  2. required String key,
  3. VariableType? type,
  4. required T value,
})

Implementation

DVCVariable({this.id, required this.key, this.type, required this.value});