PageBlockTableCell constructor

const PageBlockTableCell({
  1. RichText? text,
  2. required bool isHeader,
  3. required int colspan,
  4. required int rowspan,
  5. required PageBlockHorizontalAlignment align,
  6. required PageBlockVerticalAlignment valign,
})

Represents a cell of a table

Implementation

const PageBlockTableCell({
  this.text,
  required this.isHeader,
  required this.colspan,
  required this.rowspan,
  required this.align,
  required this.valign,
});