Variable constructor

Variable({
  1. dynamic value,
  2. String? type,
  3. String? key,
  4. int? id,
  5. dynamic displayConfiguration,
})

Implementation

Variable({
  this.value,
  this.type,
  this.key,
  this.id,
  this.displayConfiguration,
});