Variable constructor
      
      Variable({})
     
    
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,
});