cell method

Cell cell({
  1. Key? key,
  2. required int row,
  3. required int column,
  4. int rowSpan = 1,
  5. int columnSpan = 1,
})

Wrap the Widget in a Cell

Implementation

Cell cell({
  Key? key,
  required int row,
  required int column,
  int rowSpan = 1,
  int columnSpan = 1,
}) {
  return Cell(
    key: key,
    row: row,
    column: column,
    rowSpan: rowSpan,
    columnSpan: columnSpan,
    child: this,
  );
}