Word constructor

Word({
  1. String? name,
  2. String? desc,
})

Implementation

Word({
  this.name,
  this.desc,
});