Trait constructor

Trait({
  1. AttributeName? name,
  2. double? score,
})

Implementation

Trait({
  this.name,
  this.score,
});