Variable constructor

Variable({
  1. required String id,
  2. required String key,
  3. required String value,
  4. String? type,
})

Implementation

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