Attribute constructor

Attribute({
  1. String? name,
  2. RepeatedEnumAttributeValue? repeatedEnumValue,
  3. List<UriAttributeValue>? uriValues,
  4. String? valueType,
  5. List<Object?>? values,
})

Implementation

Attribute({
  this.name,
  this.repeatedEnumValue,
  this.uriValues,
  this.valueType,
  this.values,
});