Variable constructor

Variable({
  1. VariableLinks? links,
  2. String? id,
  3. required String? orgID,
  4. required String? name,
  5. String? description,
  6. List<String>? selected = const [],
  7. List<Label>? labels = const [],
  8. required VariableProperties? arguments,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Returns a new Variable instance.

Implementation

Variable({
  this.links,
  this.id,
  required this.orgID,
  required this.name,
  this.description,
  this.selected = const [],
  this.labels = const [],
  required this.arguments,
  this.createdAt,
  this.updatedAt,
});