GridItemWidget constructor

const GridItemWidget({
  1. Key? key,
  2. int? colSpan,
  3. int? colStart,
  4. int? colEnd,
  5. int? rowSpan,
  6. int? rowStart,
  7. int? rowEnd,
  8. required Widget child,
})

Implementation

const GridItemWidget({
  super.key,
  this.colSpan,
  this.colStart,
  this.colEnd,
  this.rowSpan,
  this.rowStart,
  this.rowEnd,
  required this.child,
});