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(
  String label,
  this.entries, {
  TextStyleSpec? textStyle,
  int? rowNumber,
  int? columnNumber,
  int? rowCount,
  int? columnCount,
  bool? inFirstRow,
  bool? inFirstColumn,
  bool? inLastRow,
  bool? inLastColumn,
}) : super(label,
          textStyle: textStyle,
          rowNumber: rowNumber,
          columnNumber: columnNumber,
          rowCount: rowCount,
          columnCount: columnCount,
          inFirstRow: inFirstRow,
          inFirstColumn: inFirstColumn,
          inLastRow: inLastRow,
          inLastColumn: inLastColumn);