createMultiLineCell method

SimpleCell createMultiLineCell(
  1. List content
)

Implementation

SimpleCell createMultiLineCell(List<dynamic> content) {
  final cell = SimpleCell.createMultiLineCell(content);
  cells.add(cell);
  add(cell);
  return cell;
}