InsanichessGameSettings constructor

const InsanichessGameSettings({
  1. required bool allowUndo,
  2. required bool alwaysPromoteToQueen,
  3. required AutoZoomOutOnMoveBehaviour autoZoomOutOnMove,
})

Constructs new InsanichessGameSettings object with allowUndo and alwaysPromoteToQueen.

Implementation

const InsanichessGameSettings({
  required this.allowUndo,
  required this.alwaysPromoteToQueen,
  required this.autoZoomOutOnMove,
});