DefaultAttribute constructor

DefaultAttribute({
  1. int? id,
  2. String? name,
  3. String? option,
})

Implementation

DefaultAttribute({
  this.id,
  this.name,
  this.option,
});