Attribute constructor

Attribute({
  1. int? id,
  2. String? name,
  3. int? position,
  4. bool? visible,
  5. bool? variation,
  6. List<String>? options,
})

Implementation

Attribute({
  this.id,
  this.name,
  this.position,
  this.visible,
  this.variation,
  this.options,
});