StaticTableProps constructor

const StaticTableProps({
  1. required List<String> headers,
  2. required List<List<Widget>> rows,
  3. bool showDividers = true,
  4. bool striped = false,
  5. bool stickyHeader = false,
  6. List<TextAlign>? alignments,
  7. bool showHeader = true,
})

Implementation

const StaticTableProps({
  required this.headers,
  required this.rows,
  this.showDividers = true,
  this.striped = false,
  this.stickyHeader = false,
  this.alignments,
  this.showHeader = true,
});