Variable constructor

Variable({
  1. String? id,
  2. String? variable,
  3. String? value,
})

Implementation

Variable({
  this.id,
  this.variable,
  this.value,
});