Attribute constructor
      
      Attribute({ 
    
    
- required String name,
- String? targetId,
- TargetType? targetType,
- String? value,
Implementation
Attribute({
  required this.name,
  this.targetId,
  this.targetType,
  this.value,
});