TabularLegendContentBuilder constructor

TabularLegendContentBuilder({
  1. LegendEntryLayout? legendEntryLayout,
  2. LegendLayout? legendLayout,
})

Implementation

TabularLegendContentBuilder(
    {LegendEntryLayout? legendEntryLayout, LegendLayout? legendLayout})
    : legendEntryLayout =
          legendEntryLayout ?? const SimpleLegendEntryLayout(),
      legendLayout =
          legendLayout ?? TabularLegendLayout.horizontalFirst();