TypedLinkAttributeDefinition constructor

TypedLinkAttributeDefinition({
  1. required String name,
  2. required RequiredAttributeBehavior requiredBehavior,
  3. required FacetAttributeType type,
  4. TypedAttributeValue? defaultValue,
  5. bool? isImmutable,
  6. Map<String, Rule>? rules,
})

Implementation

TypedLinkAttributeDefinition({
  required this.name,
  required this.requiredBehavior,
  required this.type,
  this.defaultValue,
  this.isImmutable,
  this.rules,
});