Variable constructor

Variable({
  1. required String id,
  2. required String key,
  3. required String value,
  4. String? type,
  5. String? projectId,
  6. Project? project,
})

Implementation

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