ResponsiveGridItem constructor

const ResponsiveGridItem({
  1. Key? key,
  2. double? xs,
  3. double? sm,
  4. double? md,
  5. double? lg,
  6. double? xl,
  7. Widget? child,
})

Implementation

const ResponsiveGridItem({
  super.key,
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.child,
});