ShogiBoard constructor

const ShogiBoard({
  1. Key? key,
  2. required GameBoard gameBoard,
  3. ShogiBoardStyle? style,
  4. bool showPiecesInHand = true,
})

Implementation

const ShogiBoard({
  Key? key,
  required this.gameBoard,
  this.style,
  this.showPiecesInHand = true,
}) : super(key: key);