TableRow constructor

TableRow({
  1. int? endIndex,
  2. int? startIndex,
  3. List<String>? suggestedDeletionIds,
  4. List<String>? suggestedInsertionIds,
  5. Map<String, SuggestedTableRowStyle>? suggestedTableRowStyleChanges,
  6. List<TableCell>? tableCells,
  7. TableRowStyle? tableRowStyle,
})

Implementation

TableRow({
  this.endIndex,
  this.startIndex,
  this.suggestedDeletionIds,
  this.suggestedInsertionIds,
  this.suggestedTableRowStyleChanges,
  this.tableCells,
  this.tableRowStyle,
});