Entity constructor

Entity({
  1. String? changeStatus,
  2. Client? client,
  3. Folder? folder,
  4. Tag? tag,
  5. Transformation? transformation,
  6. Trigger? trigger,
  7. Variable? variable,
})

Implementation

Entity({
  this.changeStatus,
  this.client,
  this.folder,
  this.tag,
  this.transformation,
  this.trigger,
  this.variable,
});