PageBlockTable constructor

const PageBlockTable({
  1. required bool bordered,
  2. required bool striped,
  3. required RichTextBase title,
  4. required List<PageTableRowBase> rows,
})

Page Block Table constructor.

Implementation

const PageBlockTable({
  required this.bordered,
  required this.striped,
  required this.title,
  required this.rows,
}) : super._();