PageBlockTable constructor

const PageBlockTable(
  1. {required RichText caption,
  2. required List<List<PageBlockTableCell>> cells,
  3. required bool isBordered,
  4. required bool isStriped}
)

A table

Implementation

const PageBlockTable({
  required this.caption,
  required this.cells,
  required this.isBordered,
  required this.isStriped,
});