InsanichessLiveGameSettings constructor

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

Creates new InsanichessLiveGameSettings object.

Implementation

const InsanichessLiveGameSettings({
  required bool allowUndo,
  required bool alwaysPromoteToQueen,
  required AutoZoomOutOnMoveBehaviour autoZoomOutOnMove,
}) : super(
        allowUndo: allowUndo,
        alwaysPromoteToQueen: alwaysPromoteToQueen,
        autoZoomOutOnMove: autoZoomOutOnMove,
      );