Attribute constructor

Attribute({
  1. int? customAttributeId,
  2. List<AttributeValue>? values,
})

Implementation

Attribute({
  this.customAttributeId,
  this.values,
});