Attribute constructor

const Attribute({
  1. required int number,
  2. required String name,
  3. required Paragraph description,
  4. required String abbreviation,
  5. required List<Focus> focuses,
  6. bool isPrimary = false,
  7. AttributeValue value = AttributeValues.average,
})

Implementation

const Attribute({
  required this.number,
  required this.name,
  required this.description,
  required this.abbreviation,
  required this.focuses,
  this.isPrimary = false,
  this.value = AttributeValues.average,
});