MoveProcessorParams<T extends Move> constructor

const MoveProcessorParams<T extends Move>({
  1. required BishopState state,
  2. required T move,
  3. required Zobrist zobrist,
})

Implementation

const MoveProcessorParams({
  required this.state,
  required this.move,
  required this.zobrist,
});