Cell constructor

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

Implementation

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