Hint constructor

const Hint(
  1. int depth,
  2. int selectivity,
  3. int move,
  4. int score,
  5. int upper,
  6. int lower,
  7. bool isBookMove,
)

Implementation

const Hint(
  this.depth,
  this.selectivity,
  this.move,
  this.score,
  this.upper,
  this.lower,
  this.isBookMove, // ignore: avoid_positional_boolean_parameters
);