createComponentCell method

SimpleCell createComponentCell(
  1. Component comp
)

Implementation

SimpleCell createComponentCell(Component comp) {
  final cell = SimpleCell.createComponentCell(comp);
  cells.add(cell);
  add(cell);
  return cell;
}