AttributeType constructor

AttributeType({
  1. required String name,
  2. String? value,
})

Implementation

AttributeType({
  required this.name,
  this.value,
});