Hint constructor

Hint({
  1. int? id,
  2. List<Word>? words,
})

Implementation

Hint({
  this.id,
  this.words,
});