LabelConfig constructor

const LabelConfig({
  1. bool showLabels = true,
  2. double labelScale = 0.25,
  3. FileLabelPosition fileLabelPosition = FileLabelPosition.bottom,
  4. RankLabelPosition rankLabelPosition = RankLabelPosition.right,
  5. Labeller fileLabeller = alphaLowerLabel,
  6. Labeller rankLabeller = numericLabel,
  7. TextStyle textStyle = const TextStyle(height: 1.0, fontWeight: FontWeight.bold),
})

Implementation

const LabelConfig({
  this.showLabels = true,
  this.labelScale = 0.25,
  this.fileLabelPosition = FileLabelPosition.bottom,
  this.rankLabelPosition = RankLabelPosition.right,
  this.fileLabeller = alphaLowerLabel,
  this.rankLabeller = numericLabel,
  this.textStyle = const TextStyle(height: 1.0, fontWeight: FontWeight.bold),
});