Cell.implicit constructor

const Cell.implicit({
  1. Key? key,
  2. int rowSpan = 1,
  3. int columnSpan = 1,
  4. required Widget child,
})

Implementation

const Cell.implicit({
  super.key,
  this.rowSpan = 1,
  this.columnSpan = 1,
  required super.child,
})  : _implicitly = true,
      row = 0,
      column = 0,
      assert(rowSpan > 0),
      assert(columnSpan > 0);