implicitCell method

Cell implicitCell({
  1. Key? key,
  2. int rowSpan = 1,
  3. int columnSpan = 1,
})

Wrap the Widget in a implicit Cell

Implementation

Cell implicitCell({
  Key? key,
  int rowSpan = 1,
  int columnSpan = 1,
}) {
  return Cell.implicit(
    key: key,
    rowSpan: rowSpan,
    columnSpan: columnSpan,
    child: this,
  );
}