AttributeGroup constructor

AttributeGroup({
  1. String? id,
  2. String? name,
  3. String? warning,
  4. List<Attribute>? attributes,
})

Implementation

AttributeGroup({
  this.id,
  this.name,
  this.warning,
  this.attributes,
});