createCell method

SimpleCell createCell(
  1. String text
)

Implementation

SimpleCell createCell(String text) {
  final cell = SimpleCell()..text = text;
  cells.add(cell);
  add(cell);
  return cell;
}