ColOrder constructor

const ColOrder({
  1. int? xs,
  2. int? sm,
  3. int? md,
  4. int? lg,
  5. int? xl,
  6. int? xxl,
})

Implementation

const ColOrder({
  this.xs,
  this.sm,
  this.md,
  this.lg,
  this.xl,
  this.xxl,
});