FormattedStreamTableWidget<R extends Object> constructor

const FormattedStreamTableWidget<R extends Object>({
  1. required TextTableOutputFormatter<R> formatter,
  2. List<int?>? columnMinWidths,
  3. String? columnSeparator,
  4. String? headerDividerColumnSeparator,
  5. Iterable<String> footerLines(
    1. int rowCount
    )?,
})

Implementation

const FormattedStreamTableWidget({
  required this.formatter,
  this.columnMinWidths,
  this.columnSeparator,
  this.headerDividerColumnSeparator,
  this.footerLines,
});