Attribute constructor

Attribute({
  1. required String name,
  2. String? targetId,
  3. TargetType? targetType,
  4. String? value,
})

Implementation

Attribute({
  required this.name,
  this.targetId,
  this.targetType,
  this.value,
});