VariableEntry constructor

VariableEntry({
  1. String? dataSource,
  2. String? dataType,
  3. String? defaultValue,
  4. String? description,
  5. String? name,
  6. String? variableType,
})

Implementation

VariableEntry({
  this.dataSource,
  this.dataType,
  this.defaultValue,
  this.description,
  this.name,
  this.variableType,
});