Variable constructor

Variable({
  1. String? arn,
  2. String? createdTime,
  3. DataSource? dataSource,
  4. DataType? dataType,
  5. String? defaultValue,
  6. String? description,
  7. String? lastUpdatedTime,
  8. String? name,
  9. String? variableType,
})

Implementation

Variable({
  this.arn,
  this.createdTime,
  this.dataSource,
  this.dataType,
  this.defaultValue,
  this.description,
  this.lastUpdatedTime,
  this.name,
  this.variableType,
});