ChessboardNotation constructor

ChessboardNotation({
  1. required VoidCallback flipBoard,
  2. required double height,
  3. required double width,
  4. Color backgroundColor = Colors.black,
  5. required ChessboardController controller,
  6. required Color notationTextColor,
  7. Widget? notationTopBar,
})

Implementation

ChessboardNotation({
  required this.flipBoard,
  required this.height,
  required this.width,
  this.backgroundColor = Colors.black,
  required this.controller,
  required this.notationTextColor,
  this.notationTopBar,
//    this.onTapMove,
});