LegendCategory<D> constructor

LegendCategory<D>(
  1. String label,
  2. List<LegendEntry<D>>? entries, {
  3. TextStyleSpec? textStyle,
  4. int? rowNumber,
  5. int? columnNumber,
  6. int? rowCount,
  7. int? columnCount,
  8. bool? inFirstRow,
  9. bool? inFirstColumn,
  10. bool? inLastRow,
  11. bool? inLastColumn,
})

Implementation

LegendCategory(
  super.label,
  this.entries, {
  super.textStyle,
  super.rowNumber,
  super.columnNumber,
  super.rowCount,
  super.columnCount,
  super.inFirstRow,
  super.inFirstColumn,
  super.inLastRow,
  super.inLastColumn,
});