GridCol constructor

const GridCol({
  1. Key? key,
  2. required Widget child,
  3. int? xs,
  4. int? sm,
  5. int? md,
  6. int? lg,
  7. int? xl,
  8. int? xxl,
  9. int order = 0,
  10. int offset = 0,
  11. List<ScreenSize>? visibleOn,
})

Implementation

const GridCol({
  super.key,
  required this.child,
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
  this.order = 0,
  this.offset = 0,
  this.visibleOn,
});