GridItemWrapper constructor

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

Implementation

const GridItemWrapper({
  super.key,
  required this.child,
  this.colSpan = 1,
  this.rowSpan = 1,
});