CustomAttribute constructor

CustomAttribute({
  1. List<CustomAttribute>? groupValues,
  2. String? name,
  3. String? value,
})

Implementation

CustomAttribute({
  this.groupValues,
  this.name,
  this.value,
});