TabularLegendContentBuilder constructor

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

Implementation

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