FacetAttributeDefinition constructor

FacetAttributeDefinition({
  1. required FacetAttributeType type,
  2. TypedAttributeValue? defaultValue,
  3. bool? isImmutable,
  4. Map<String, Rule>? rules,
})

Implementation

FacetAttributeDefinition({
  required this.type,
  this.defaultValue,
  this.isImmutable,
  this.rules,
});