Attribute constructor

Attribute({
  1. String? id,
  2. String? name,
  3. String? title,
  4. String? iconUrl,
  5. String? defaultF,
  6. String? settingNote,
  7. String? settingName,
  8. String? description,
  9. String? descriptionShort,
  10. double? match,
  11. String? status,
  12. String? panelId,
})

Implementation

Attribute({
  this.id,
  this.name,
  this.title,
  this.iconUrl,
  this.defaultF,
  this.settingNote,
  this.settingName,
  this.description,
  this.descriptionShort,
  this.match,
  this.status,
  this.panelId,
});