LabelOverlay constructor

const LabelOverlay({
  1. Key? key,
  2. LabelConfig config = LabelConfig.standard,
  3. BoardSize size = BoardSize.standard,
  4. int orientation = Squares.white,
  5. required BoardTheme theme,
})

Implementation

const LabelOverlay({
  super.key,
  this.config = LabelConfig.standard,
  this.size = BoardSize.standard,
  this.orientation = Squares.white,
  required this.theme,
});