ResponsiveCol constructor

const ResponsiveCol({
  1. Key? key,
  2. required int xs,
  3. int? md,
  4. int? lg,
  5. required Widget child,
})

Creates a ResponsiveCol widget with required column spans and child.

Implementation

const ResponsiveCol({
  super.key,
  required this.xs,
  this.md,
  this.lg,
  required this.child,
});