DeeResponsiveColumn constructor

DeeResponsiveColumn({
  1. required Widget child,
  2. int sm = 6,
  3. int md = 8,
  4. int lg = 10,
  5. int xl = 12,
  6. Alignment alignment = Alignment.topLeft,
})

Implementation

DeeResponsiveColumn({
  required this.child,
  this.sm = 6,
  this.md = 8,
  this.lg = 10,
  this.xl = 12,
  this.alignment = Alignment.topLeft,
});